PDA

View Full Version : colored staff names in whos online


imported_MaDCaT75
02-01-2004, 09:37 PM
I searched but cant find a mod like this. Anyway to make the staff names in color in who's online? Just the who's online only please - no postbit or anything.

Admin: red
Super mod: blue
mod: green

Thanks.

Zachery
02-01-2004, 11:23 PM
if were talking about vB3 its built in for the whole board

Color name markup will be done thoughout the whole board for specific usergroups

imported_MaDCaT75
02-01-2004, 11:29 PM
Yeah but I dont want color name markup thru the whole board...... it screws up one of my skins. I just want it in who's online please!

Zachery
02-02-2004, 12:16 AM
you can use classes via css per style to make it look right for the markup do
First box
<span class="admin">

Second Box
</span>

in your styles put in the extra css area

.admin {color: #hex;}
that will make it for each style :)

imported_MaDCaT75
02-02-2004, 06:08 AM
Wow I must be an idiot cause half of that didnt make sense to me

imported_X-Sector
02-07-2004, 08:39 PM
^^^

Me too, I don't get it either..

Zachery
02-07-2004, 10:46 PM
Because each style is controlled by css, instead of using <font color="#bla"></font>

we can use the span tag and a css class to define the usergroups color

so for your admin we go and put the markup in like this

box 1
<span class="admin">
box 2
</span>

Now in the style manager under Additonal CSS Definitions add
.admin {color: #HEX;}


Now in each style your admin color name should look correct as you can define it :)