Dans la feuille de style (fichier avec l'extension .css) tu trouves :
Code:
/* General text */
.gen { font-size : 12px; }
.genmed { font-size : 11px; }
.gensmall { font-size : 10px; }
.gen,.genmed,.gensmall { color : #000000; }
a.gen,a.genmed,a.gensmall { color: #006699; text-decoration: none; }
a.gen:hover,a.genmed:hover,a.gensmall:hover { color: #DD6900; text-decoration: underline; }
et tu rajoutes une classe par exemple :
Code:
/* General text */
.gen { font-size : 12px; }
.genmed { font-size : 11px; }
.gensmall { font-size : 10px; }
.gensmall2 { font-size : 10px; }
.gen,.genmed,.gensmall { color : #000000; }
.gensmall2 { color : #FF0000; }
a.gen,a.genmed,a.gensmall { color: #006699; text-decoration: none; }
a.gen:hover,a.genmed:hover,a.gensmall:hover { color: #DD6900; text-decoration: underline; }
.gensmall2 { color : #FF0000; } c'est ici que tu rentres le code hex de la couleur que tu souhaites Wink
et ensuite tu reprends le index_body.tpl et tu mets ce code là :
Code:
<span class="gensmall2">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span>
à la place de celui-ci :
Code:
<span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span>