PDA

View Full Version : Admin/Smod/Mod colors


KK_JNM
09-04-2009, 12:26 AM
How do I change the colors of their names like you see on a lot of forums? Like, supermoderators are in red, moderator names are in orange, stuff like that.

HMBeaty
09-04-2009, 12:54 AM
AdminCP > Usergroups > Usergroup Manager > Edit Usergroup > Username HTML Markup

Lynne
09-04-2009, 01:02 AM
Usergroup Manager > Edit Administrators > Username HTML Markup
The first field is the opening tag. The second field is the closing tag. These tags will be inserted around the user's username like this:

[opening tag]username[closing tag]

Some HTML tags you might want to use here include:

<span style="font-weight: bold;">username</span> = username
<span style="font-style: italic;">username</span> = username
<span style="text-decoration: underline;">username</span> = username
<span style="color: red;">username</span> = username
<span style="font: 20px verdana;">username</span> = username

You can also do combinations by using more than one attribute in the style property:

<span style="font: 20px verdana; color: red;">username</span> = username

KK_JNM
09-04-2009, 01:06 AM
Thanks! :)