אשכול: הקטנת כתב
View Single Post
ישן 09-06-10, 18:21   # 2
SniR-S
חבר מתקדם
 
מיני פרופיל
תאריך הצטרפות: Aug 2008
הודעות: 546

SniR-S לא מחובר  

PHP קוד:
<?
$name
=$_GET['act'];
include 
"admin/mysql_config.php";
$link mysql_connect("$dbhost","$dbuname","$dbpass");
if ( !
$link )
$dberror "Could not connect to MySQL";
mysql_select_db($dbname) or die ("Could not open $dbname");
$result mysql_query("SELECT * FROM customers ORDER BY 'id' DESC");
$runhref="";
while (
$row=mysql_fetch_array($result))
{
$runhref.="<a href=\""$row['url'] ."\" target=\"_blank\">"$row['title'] ."</a><br><br>";
}
?>
<html dir="rtl" lang="he"><head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1255">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="background-attachment: fixed;width:200px;height:340px;background:url(imag es/subsub-13.gif) no-repeat;">
<div class="clientstitle">&aacute;&eacute;&iuml; &igrave;÷&aring;&ccedil;&aring;&uacute;&eacute;&eth;&aring;</div><br /><br /><br />
<marquee truespeed direction="up" onMouseOver="this.stop();" onMouseOut="this.start();" scrolldelay="43" scrollamount="1" behavior="scroll" loop="0">
<div align="center" style="font-family:ariel;font-size: 11px;"><?= $runhref?></div>
</marquee>
</body>
</html>
אתה צריך להוסיף font-size ב style של ה div בתוך ה marquee ..
  Reply With Quote