Log in

View Full Version : Colored usernames accross the board?


Nathan2006
03-10-2006, 05:52 PM
Hi,

Is there anyway to add colored user names across the board such as:

Admins = Blue = Admins
Moderators = Orange = Moderators

So that its bold and appers as bold in the active members and also in the threads?

Thank you for any help :)

Marco van Herwaarden
03-11-2006, 07:35 AM
Usergroup setttings: HTML Markup.

Nathan2006
03-11-2006, 12:01 PM
Usergroup setttings: HTML Markup.

Thank you for your help :)


-------------------------------------------------


Hello,

I have <span style="font-weight: bold; color: red;">

How would I make this italic & change the font?

Thanks for any help :)

merk
03-12-2006, 07:49 AM
font-style: italic; and font-family: fontname;

be aware that fontname must be a font defined for use that will be on everyones pc

Nathan2006
03-12-2006, 08:13 AM
font-style: italic; and font-family: fontname;

be aware that fontname must be a font defined for use that will be on everyones pc

Hi I have not bothered changing the font best leave it as it is lol

I tried the italic; but it will not work

<span style="font-weight: italic; bold; color: blue;">

Im not sure if I have got the italic; in the correct place?

Thanks

Virtuosofriend
03-12-2006, 08:13 AM
it is must better to use <b></b> and <i> </i> etc rather than that format ;)

Nathan2006
03-12-2006, 09:27 AM
I worked it out :)

Thanks

Here it is for others having this problem :)

<i><span style="font-weight: bold; color: blue;">
</span></i>

007
03-12-2006, 02:23 PM
It didn't work because you put font-weight: italic.

It should have been font-style: italic;

Try that and it will work.