PDA

View Full Version : User ID questions


wtsnake
11-21-2009, 02:33 PM
How do I change the color and boldness of adnmins, mods, and sponsors to classify the difference between them and the regular members?

Lynne
11-21-2009, 02:50 PM
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

wtsnake
11-21-2009, 03:13 PM
thanks! i got that to work on posting. but on the home page, at the bottom it just show the admins in red....whereas it should be red bold italic

Lynne
11-21-2009, 04:29 PM
Perhaps your css is incorrect. Exactly what did you put into the two boxes for the admins?

wtsnake
11-21-2009, 05:22 PM
<span style="color: red;"font-weight: bold;"""font-style: italic;">

--------------- Added 1258831413 at 1258831413 ---------------

and the </span> in the second

Lynne
11-21-2009, 05:35 PM
That is incorrect.

<span style="color: red; font-weight: bold; font-style: italic;">

wtsnake
11-21-2009, 05:48 PM
got it. thanks!