PDA

View Full Version : Different Usergroup Colors Per Skin


Chelf12
09-28-2008, 01:54 AM
I had an idea.

Is there any way to make the Usergroup Color different per skin?

For example.

Let's say on the default skin, I wanted Admins to appear in Red.

But on different skin, I wanted the Admins to appear in Pink.

Is there any way to do this, or a MOD?

I run vBulletin 3.7.3, if that helps.

Thanks for reading!

SEOvB
09-28-2008, 02:55 AM
In the usergroup options for markup enter something like

<span class="admin">

Then in each skins addtional CSS define admin

.admin {
color: red;
}

skin2:
.admin {
color: pink;
}

Chelf12
09-28-2008, 03:40 AM
Okay. Thanks for your help!

:D

~Chelf