Log in

View Full Version : Color for Moderators/admins?


poqbum
06-03-2006, 12:15 AM
How do you make it so hat Moderators and Admin usernames appear different colors on the forums?

Damian
06-03-2006, 12:57 AM
You can use HTML.

For example to change the Administrator username color and style to red, bold and italic.

AdminCP -> Usergroups -> Usergroup Manger -> Edit user group Administrator(id:6) -> Username HTML Markup ->
Add to first box: <span style="font-weight: bold; font-style: italic; color: #FF0000">
Add to second box:
</span>

Alternatively, or if you user more than 1 style and would like the username different per style:

Add a new CSS definition to your style,


.username_admin {
color: #FF0000;
font-weight: bold;
font-style: italic;
}

For Username HTML Markup, use:

<span class="username_admin">

Kiwi76
06-03-2006, 02:09 AM
Ah, so that's how it's done individually if you run more than one style. Thanks alot.