how to change font-color of username?

erich37

Well-known member
I would like to highlight the username for all my users at my Forum, by changing the color of the font of the username, e.g. "erich37".

How to do this?

Appreciate your help!

change_username_color.gif
 
Add this to your EXTRA.css template:

Code:
.navTabs .navTab.account .navLink
{
color: red;
}

Produces:

redname.webp

Obviously change "red" to whatever color you want.
 
ninja-png.30145
 
Top Bottom