MyBB Community Forums

Full Version: Question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey im new to this and I have a MyBB forum im trying to make a usergroup but i want the usergroup to have colored name how do i do this? thanks in advance Smile
Just put HTML in the Username Style option, making sure {username} stays. I.e.

<strong>{username}</strong>

will be bold, and:

<span style="color: blue;">{username}</span>

will be blue.

Also, you posted this in the MyBB.com Community & Site Issues forum, which is for issues with this forum, not yours. Moved to general support.
Go to Admin CP > Users & Groups > Groups > Select Your Group > Username Style. Instead of {username} use this:

<span style="color: #ff0000">{username}</span>

Whereas #ff0000 is the color. If you'd like it to be bold as well, use this:

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

</beaten>