Lone Wolf Well-known member Jun 1, 2015 #1 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.
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.
EQnoble Well-known member Jun 1, 2015 #2 If it is only for your site, you could use custom css class names for each group (that needs style specific alteration)... 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; } Upvote 0 Downvote
If it is only for your site, you could use custom css class names for each group (that needs style specific alteration)... 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; }
TJA Well-known member Jun 1, 2015 #3 In EXTRA.css Code: .style3 { color: #ffffff !important; } 3 represents the usergroup number, in that case Administrative. Moderators would be .style4 Upvote 0 Downvote
In EXTRA.css Code: .style3 { color: #ffffff !important; } 3 represents the usergroup number, in that case Administrative. Moderators would be .style4
Lone Wolf Well-known member Jun 1, 2015 #4 TJA said: In EXTRA.css Code: .style3 { color: #ffffff !important; } 3 represents the usergroup number, in that case Administrative. Moderators would be .style4 Click to expand... And if I wanted to do more than one group? IE Admins, Mods and Super Mods? Upvote 0 Downvote
TJA said: In EXTRA.css Code: .style3 { color: #ffffff !important; } 3 represents the usergroup number, in that case Administrative. Moderators would be .style4 Click to expand... And if I wanted to do more than one group? IE Admins, Mods and Super Mods?
TJA Well-known member Jun 1, 2015 #5 All the same colour? Code: .style3, .style4, .style5 { color: #ffffff !important; } Upvote 0 Downvote
Lone Wolf Well-known member Jun 1, 2015 #6 TJA said: All the same colour? Code: .style3, .style4, .style5 { color: #ffffff !important; } Click to expand... Yes, thanks for that. Upvote 0 Downvote
TJA said: All the same colour? Code: .style3, .style4, .style5 { color: #ffffff !important; } Click to expand... Yes, thanks for that.