Seite 1 von 1
Benutzerränge-Schrift und Farbe ändern
Verfasst: 04.02.2009 00:36
von xors3d
topic sagt alles.
hab alle css durchsucht, aber nix finden können
[edit] farbe hab ich nun im admin bereich finden können, nicht jedoch die schriftart...
Re: Benutzerränge-Schrift und Farbe ändern
Verfasst: 04.02.2009 13:06
von JFooty
Die Schriftart wird in der common.css für den body festgelegt.
Das sieht im Original-prosilver so aus:
Code: Alles auswählen
body {
/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
font-family: Verdana, Helvetica, Arial, sans-serif;
color: #828282;
background-color: #FFFFFF;
/*font-size: 62.5%; This sets the default font size to be equivalent to 10px */
font-size: 10px;
margin: 0;
padding: 12px 0;
}
Wenn du die Schriftart nur für die Ränge ändern willst, suche in der links.css:
Code: Alles auswählen
/* Coloured usernames */
.username-coloured {
font-weight: bold;
display: inline !important;
padding: 0 !important;
}
Ersetze mit:
Code: Alles auswählen
/* Coloured usernames */
.username-coloured {
font-family: hierstehtjetztdeineSchriftart ;
font-weight: bold;
display: inline !important;
padding: 0 !important;
}
Re: Benutzerränge-Schrift und Farbe ändern
Verfasst: 04.02.2009 14:53
von xors3d
okay cool, danke dir....