PDA

View Full Version : Question Regarding Usergroups


Revenga
06-11-2012, 11:05 AM
Hi,

Is there a way to change usergroup colors on each individual syle? i.e. Dark Style the Administrators usergroup would appear Blue but on a Light Style it would appear Orange?

Is there a way to do this on vBulletin, even if it requires a little bit of editing code? This isn't a huge deal, but it would be convenient for me. Just a basic yes or no is all I'm looking for really.

- Revenga

ru55ian
06-11-2012, 12:47 PM
Hey, yes there is through admincp you are able to setup html color code for each group.

Revenga
06-12-2012, 11:41 AM
Yes, but can a single usergroup be styled blue for one style and orange for another style?

- Revenga

Lynne
06-12-2012, 02:47 PM
You may use CSS for that. You would set a class for the usergroup colors and then in each style, you may use CSS to make items of that class different colors.

<span class="admin">Administrator</span>

Light color style - .admin {color: black;}
Dark color style - .admin {color: white;}