PDA

View Full Version : glowing staff usernames


CarpCharacin
01-28-2015, 10:28 PM
I need some help. How can i make it so the usernames of administrators are glowing red, the usernames of super moderators glowing orange and the usernames of moderators glowing blue?

Zachery
01-28-2015, 10:56 PM
Usergroup html markup boxes.

do something like <span class="USERGROUPNAME"> in the firstbox, and in the second box do </span>

Then, in your additional.css template:

for admin we'd do something like

.administrator
{
text-shadow: 0 0 2px red;
}


.supermoderators
{
text-shadow: 0 0 2px orange;
}

.moderator
{
text-shadow: 0 0 2px blue;
}

CarpCharacin
01-28-2015, 11:01 PM
do i keep the quotes around where i put the usergroup name?

Gio~Logist
01-28-2015, 11:12 PM
do i keep the quotes around where i put the usergroup name?

Yessir.

ForceHSS
01-29-2015, 08:25 AM
In Usergroup Manager edit the group you want and in Username HTML Markup add
In the first box put

<span style="color:red;font-weight:bold;text-shadow: 1px 1px 10px red;">in the 2nd box put

</span>
Change the colour in the code to what you need for each group

Zachery
01-29-2015, 11:06 AM
I don't suggest using style tags for this, its easier to use the classes, you can add/do more to them and don't have to edit the usergroups to change the markup.

Gio~Logist
01-30-2015, 02:57 AM
I don't suggest using style tags for this, its easier to use the classes, you can add/do more to them and don't have to edit the usergroups to change the markup.

Yep. Style tags are not recommended really ever. Classes are much more optimized and efficient.