Username Styling: How do I make a group's name red?

Dylan

Member
So...the styles I use in IPB don't work on XenForo, so my question is...how do I use the styling thing in XenForo? I want to make admin's names bold red, and moderator's names light blue, and bold.

What are the styling codes for those? Anything I need to know about "styling" ?

Thanks.
 
Open admin.php?user-groups/3/edit
In User Name CSS, place the following:
Code:
font-weight: bold; color: red;

Open admin.php?user-groups/4/edit
In User Name CSS, place the following:
Code:
font-weight: bold; color: blue;

Change the color property as appropriate.
 
Top Bottom