Seite 1 von 1
Admin/Mod-Farben werden von last_visit_MOD nicht übernommen.
Verfasst: 15.05.2005 22:34
von 240709Gast
Hi. Ich hab die Farben von Admin und Mod nach Knowledge-base Anleitung geändert. Allerdings werden diese Farben vom last_visit MOD nicht übernommen... Was muss ich da machen das das klappt?
Link:
http://liosnudin.li.funpic.de/forum/index.php
mfg, Cold
Verfasst: 15.05.2005 22:57
von Markus67
Hi ...
suche in der index.php
Code: Alles auswählen
case ADMIN :
$todayrow['username'] = '<b>' . $todayrow['username'] . '</b>';
$style_color = 'style="color:#' . $theme['fontcolor3'] . '"';
break;
case MOD :
$todayrow['username'] = '<b>' . $todayrow['username'] . '</b>';
$style_color = 'style="color:#' . $theme['fontcolor2'] . '"';
break;
ersetze mit:
Code: Alles auswählen
case ADMIN :
$todayrow['username'] = '<b>' . $todayrow['username'] . '</b>';
$style_color = 'style="color:#FFFFFF"';
break;
case MOD :
$todayrow['username'] = '<b>' . $todayrow['username'] . '</b>';
$style_color = 'style="color:#FF0000"';
break;
Die Farben kannst du ja entsprechend anpassen
Markus
Verfasst: 15.05.2005 23:04
von 240709Gast
Jo funtzt klasse danke!
mfg, Cold