XF 1.4 Different Usergroups colours in different skins?

Lone Wolf

Well-known member
My staff usergroup colour is black in the default skin but this doesnt show up in the dark skin. Is there a way around that?

Ideally. I'd like to be able to give staff a different username colour in the dark skin.
 
If it is only for your site, you could use custom css class names for each group (that needs style specific alteration)...

gfdgdsg.webp
and then put the css for those classes in extra css per style or something along those lines...

.customClass {
border:1px solid #000000;
background-color:#cccccc;
color:#000000;
}
 
In EXTRA.css

Code:
.style3 {
color: #ffffff !important;
}

3 represents the usergroup number, in that case Administrative. Moderators would be .style4
 
Top Bottom