MyBB Community Forums

Full Version: Can't change a a usergroup style
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm logged in as the admin of my site, but I can't seem to change the username color/style of a group. The page says that it was changed, but refreshing my test thread page shows that it's still the same default blue. What am I doing wrong, and how do I fix it?
You using html for that?

It need to look like for example
<span style="color: green">{username}</span>

At Username style option
Pretty sure. The style looks like:

<span style="color: 3e464b;"><strong><em>{username}</em></strong></span>
Use this:
<span style="color: #3e464b;"><strong><em>{username}</em></strong></span>

You forgot #

You must use # when writing html code for color like #fff or #ffffff or #3e464b but you don't use # for color names like maroon, blue, teal etc.
Yep, that was it. Thanks!