Adding Some Flava To Your User Groups
© Goes to Funnyguy From XWF(
www.xwforum.com)
Wanted to know how to make a Group a different color? How about Italics? Read on
Go to your AdminCP-> users and Groups-> Manage User Groups-> Edit Group(of desired group)
Once you are at the edit screen you will see, under Global Settings:
Online List Format [Prefix]: This is what shows before the username. To make their username a different color just simply use this
Code:
<span style='color:CHOOSEYOURCOLOR'>
See where it says Online List Format [Suffix]: This is what shows after the username. This means you have to close any tags you have put in the Prefix. To close the above one, simply use:
Only Bold:
Code:
Online List Format [Prefix]: <b>
Online List Format [Suffix]: </b>
Only Italic:
Code:
Online List Format [Prefix]: <i>
Online List Format [Suffix]: </i>
Bold and Italic:
Code:
Online List Format [Prefix]: <b><i>
Online List Format [Suffix]: </i></b>
Bold and Colored:
Code:
Online List Format [Prefix]: <span style='color:COLORHERE; font-weight: bold'>
Online List Format [Suffix]: </span>
Glow:
Code:
Online List Format [Prefix]: <font style='color: red; filter:glow(color=black, strength=2); height: 1px;'>
Online List Format [Suffix]: </font>
Blow Gold:
Code:
Online List Format [Prefix]: <font style='color: red; font-weight: bold; filter:glow(color=COLOR, strength=3); height: 1px;'>
Online List Format [Suffix]: </font>