MyBB Community Forums

Full Version: help !
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello   I have a new question  , I want to know how to change group colour , but I want it like that ? 

[Image: 1464591527851.png]
Go to Users & Groups, click on the group you want to edit, and change the color. By default for admins, it will look something like:

<span style="color: green">{$username}</span>

Change green to the color you want, or a hex code. Example: #000 instead of green, will be black.
<span style="color: #F22613; text-shadow: 0px 0px 6px #F22613;">{username}</span>

That's what you're looking for.
thanks everyone Smile
(2016-05-30, 07:01 AM)Donald_Duck Wrote: [ -> ]Go to Users & Groups, click on the group you want to edit, and change the color. By default for admins, it will look something like:

<span style="color: green">{$username}</span>

Change green to the color you want, or a hex code. Example: #000 instead of green, will be black.

Actually, #000000 is black just like #FFFFFF is white
(2016-06-02, 05:26 AM)izakgewdrick Wrote: [ -> ]
(2016-05-30, 07:01 AM)Donald_Duck Wrote: [ -> ]Go to Users & Groups, click on the group you want to edit, and change the color. By default for admins, it will look something like:

<span style="color: green">{$username}</span>

Change green to the color you want, or a hex code. Example: #000 instead of green, will be black.

Actually, #000000 is black just like #FFFFFF is white

#000 is the short form. #fff also works.
(2016-06-02, 05:30 AM)Nathan Malcolm Wrote: [ -> ]
(2016-06-02, 05:26 AM)izakgewdrick Wrote: [ -> ]
(2016-05-30, 07:01 AM)Donald_Duck Wrote: [ -> ]Go to Users & Groups, click on the group you want to edit, and change the color. By default for admins, it will look something like:

<span style="color: green">{$username}</span>

Change green to the color you want, or a hex code. Example: #000 instead of green, will be black.

Actually, #000000 is black just like #FFFFFF is white

#000 is the short form. #fff also works.

Yes but in saying that, if your using something like a hex to rgb converter, #000 will not work in the usual circumstances. Hence why I always use the latter