MyBB Community Forums

Full Version: Help with user group username style.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Trying to add font and bold to this how do i do this?

<span style="color: #CC00CC;"><strong>{username}</strong></span>

Also this is under edit user group. username style. Trying to make my name bigger and with a more solid font.
<font size="5" face="Abbess" color="#FF0000"><strong>{username}</strong></font>
Thank you very very much. Also is there like a list of fonts that i can use anywere? Thanks so much! +rep!
(2010-11-20, 03:23 PM)Yaldaram Wrote: [ -> ]
<font size="5" face="Abbess" color="#FF0000"><strong>{username}</strong></font>

this stuff is all deprecated. should be done using css
(2010-11-20, 04:21 PM)MattRogowski Wrote: [ -> ]It's just HTML.

http://www.w3schools.com/html/
http://www.w3schools.com/css/

Thanks. Also Is there any possibility of having just a picture as a username? I tried useing html it worked but still had my actual username along with the picture.
(2010-11-20, 04:41 PM)Uncontrol Wrote: [ -> ]
(2010-11-20, 03:23 PM)Yaldaram Wrote: [ -> ]
<font size="5" face="Abbess" color="#FF0000"><strong>{username}</strong></font>

this stuff is all deprecated. should be done using css

Then do yourself. Its the easiest solution what the OP asked.
<span style="color: #cc00cc; font: bold 12px arial,sans-serif;">{username}</span>

Change color and font to whatever you want, obviously.