PDA

View Full Version : Different colors for admins/smods/mods in different Styles.


phiber
09-01-2005, 10:48 PM
Hi,
I want to know if there is a method to change the color of the forum staff depending of the style. In my forum we have a community with many differents styles someones in a dark color and other ones like Smooth Blue.
I didn't find nothing that do this..
Thanks in advance!

Andreas
09-01-2005, 10:56 PM
Make the Usergroup Markup use a CSS Class and change the attributes (color, etc.) of that Class in every Style.

phiber
09-02-2005, 12:24 AM
Make the Usergroup Markup use a CSS Class and change the attributes (color, etc.) of that Class in every Style.

I think I got it, thanks :)

Kuimera
10-24-2005, 04:18 PM
I didnt get it... Where do I have to go to change the attributes?

frandy
02-24-2007, 07:10 PM
I know this is bringing up a very old topic but, how is this done? how to i change it to a CSS class etc?

frandy
02-28-2007, 01:39 PM
bump...anyone??

paul41598
02-28-2007, 01:50 PM
bump...anyone??

Admincp --> Usergroups --> Usergroup Manager

Click GO on whichever usergroup to edit.

In the Username HTML Markup section use something like:

<span class="admin1">

for the first text box

</span>

for the second text box


Then goto Additional CSS Definitions (at the very bottom) in each of your styles

and add something like:


.admin1 {
color:#660033;
font-weight: bold;
}

frandy
03-02-2007, 02:43 PM
Thanks!