Log in

View Full Version : How do you change the colors of Names, etc?


tonyswifey
11-05-2008, 02:10 AM
Sorry wasn't quite sure how to word this. I want to change the Admin name and certain members names to different colors. I know I have to put the html color code in the usergroup html markup section but how do you do that to make the color show/work correctly?

Lynne
11-05-2008, 03:11 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