Add to css_additional.css
Then, in User Groups/User Group Manager,
Select the user group, such as Administrator, and edit.
Under Username HTML Markup, there are 2 boxes.
In box 1 add <span class="admin-shadow">
In box 2 add </span>
Repeat the process for the other user groups you want to glow, changing admin to match the above code.
This will give an affect like thus- 
Registered users are not affected as they are not included.
In addition, you may notice that the Admin sparkles.
This can be accomplished using a background image.
Instead of <span class="admin-shadow">
Use <span style="background: url(images/backround9.gif)" class="admin-shadow">
Where images is the location and background9.gif is the animated image.
Change the text-shadow color values to match your own sites theme.
Code:
/* Glow Text */
.admin-shadow {
color: #001a00;
font-weight: bold;
text-shadow: 0px 0px 7px #99ff99;
}
.smod-shadow {
color: #33001a;
font-weight: bold;
text-shadow: 0px 0px 7px #f0b3ff;
}
.mod-shadow {
color: #000022;
font-weight: bold;
text-shadow: 0px 0px 7px #5555FF;
}
.vip-shadow {
color: #00001a;
font-weight: bold;
text-shadow: 0px 0px 7px #b2b300;
}
/* Glow Text */
Then, in User Groups/User Group Manager,
Select the user group, such as Administrator, and edit.
Under Username HTML Markup, there are 2 boxes.
In box 1 add <span class="admin-shadow">
In box 2 add </span>
Repeat the process for the other user groups you want to glow, changing admin to match the above code.
This will give an affect like thus-
Registered users are not affected as they are not included.
In addition, you may notice that the Admin sparkles.
This can be accomplished using a background image.
Instead of <span class="admin-shadow">
Use <span style="background: url(images/backround9.gif)" class="admin-shadow">
Where images is the location and background9.gif is the animated image.
Change the text-shadow color values to match your own sites theme.


(Purple? I love purpe xD)

Comment