MyBB Community Forums

Full Version: Group colours
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I edit the colours of groups?
Navigate to "ACP" -> "Users and Groups" -> "Groups" -> (Choose Group) -> "Edit Group"

Change Span color of "Username Style" with desired HTML color code, if it is not already there, copy the span of another group and change as desired.

I would have provided it here, but im on my phone unfortunately.
(2016-11-18, 08:49 AM)Insert Wrote: [ -> ]Navigate to "ACP" -> "Users and Groups" -> "Groups" -> (Choose Group) -> "Edit Group"

Change Span color of "Username Style" with desired HTML color code, if it is not already there, copy the span of another group and change as desired.

I would have provided it here, but im on my phone unfortunately.

Like this, i wrote green, but you can change with html code;
<span style="color: green;"><strong><em>{username}</em></strong></span>
I like to do it with CSS classes:
<span class="user-registered">{username}</span>

Then I can style it in my theme:
.user-registered {
color: green;
font-weight: bold;
}