Seite 1 von 1

Kategorie Schrift-Farbe

Verfasst: 06.03.2004 13:44
von harald2
Hallo

Wo kann ich die Schrift und Linkfarbe der Kategorie ändern?

danke

Verfasst: 06.03.2004 14:25
von Mungo
Folgenden Code solltest du in der subSilver.css finden:

Code: Alles auswählen

/* Forum category titles */
.cattitle		{ font-weight: bold; font-size: 12px ; letter-spacing: 1px; color : #006699}
a.cattitle		{ text-decoration: none; color : #006699; }
a.cattitle:hover{ text-decoration: underline; }
Oder wenn du den CSS-Teil aus der overall_header.tpl verwendest:

Code: Alles auswählen

/* Forum category titles */
.cattitle		{ font-weight: bold; font-size: {T_FONTSIZE3}px ; letter-spacing: 1px; color : {T_BODY_LINK}}
a.cattitle		{ text-decoration: none; color : {T_BODY_LINK}; }
a.cattitle:hover{ text-decoration: underline; }
Du kannst das auch im Administrationsbereich ändern, nur dann sind auch andere Links davon auch betroffen.

Verfasst: 06.03.2004 16:57
von harald2
Funktioniert nur in overall_header.tpl

danke für die Hilfe