Modifier la police sur code html

Fermé
aaa - 20 avril 2008 à 16:24
artragis Messages postés 481 Date d'inscription mardi 12 juin 2007 Statut Membre Dernière intervention 6 avril 2010 - 20 avril 2008 à 18:21
Bonjour,
je voudrai savoir ou je peu modifier la taille de la police sur se code là

<?php

if (eregi("blok.php", $_SERVER['PHP_SELF'])) {
die ("You cannot open this page directly");
}

global $nuked, $language, $bgcolor3;
translate("modules/Wars/lang/".$language.".lang.php");

echo" <table style=\"width: 100%; border:0px; padding-left:5px; \" cellspacing=\"0\" \" cellpadding=\"4\">";

$sql=mysql_query("SELECT warid, type, adversaire, pays_adv,score_team, score_adv FROM $nuked[prefix]"._match." WHERE etat='1' ORDER BY date_an DESC, date_mois DESC, date_jour DESC LIMIT 0, 5");

if ($type != "") {$tipe = "" . $type . "";}
else {$tipe = "n.a";}

while (list($war_id, $tipe, $adv_name,$pays_adv, $score_team, $score_adv) = mysql_fetch_array($sql)){
$adv_name=stripslashes($adv_name);

$len2 = 16;
$ip1="$adv_name";
if (strlen($ip1) >= $len2)
{
$chaine2 = substr($ip1,0,$len2) . "..." ;
}else{
$chaine2 = $adv_name;
}

if ($score_team>$score_adv){$color="#00740b";}
else if ($score_team<$score_adv){$color="#b90000";}
else{$color="#002caa";}

$pays_adv="<img src=\"images/flags/$pays_adv\" style=\"border: 0px;\" alt=\"\" />";

echo"<tr>
<td style=\"width: 40%; text-align: left;color:white;padding-left:30px;\">" . $chaine2 . "</td>
<td style=\"width: 35%; text-align: center;color:white;\">" . $tipe . "</td>
<td style=\"width: 25%; color: $color; text-align: left; font-color: #FFFFFF;\"><b>" . $score_team . " | " . $score_adv . "</b></td></tr>";
}
echo" </table>";



?>
A voir également:

1 réponse

artragis Messages postés 481 Date d'inscription mardi 12 juin 2007 Statut Membre Dernière intervention 6 avril 2010 146
20 avril 2008 à 18:21
<td style=\"width: 40%; text-align: left;color:white;padding-left:30px; font-size : ;\">" . $chaine2 . "</td>
<td style=\"width: 35%; text-align: center;color:white;font-size : ;\">" . $tipe . "</td>
<td style=\"width: 25%; color: $color; text-align: left; font-color: #FFFFFF;font-size : ;\"><b>" . $score_team . " | " . $score_adv . "</b></td></tr>";
0