Quote:
Originally Posted by singa
Hi
Everyone has the same blue color but I want members to see who is a moderator and who isn't.
How can I get my moderators to have different font color in their name, for example red?
Thanks
|
Go to admincp ->usergroups -> moderators
Take a look at username html markup.
Change that to something like this:
Code:
<span class="moderator">
</span>
in the boxes, respectively (ie: the first one gets the first line, the second one gets the second line)
Then go to the template -> main CSS section, and in the very bottom CSS (additional css definitions), add something like this:
Code:
.moderator{
color : #0000FF ;
font-class : bold;
}
You can do that with
all of the usergroups if you like, it's really very simple. If you need color definitions, check out
this page