Log in

View Full Version : Nickname and changing colors


Black_Widow
09-08-2004, 03:05 AM
I have seen I can set, from Acp, different colors for nickname of different usergroups. However If i for example use the tags

<font style="color:#009900"> </font>

the nickname chage color everywhere but mouse over link activation changing color to orange doesn't more work.
How can change a nickname color but not hide link activation color switch onmouseover?

Thanks in advace :squareeyed:

Mr. Brian
09-09-2004, 12:24 AM
What do you mean by this line:

the nickname chage color everywhere but mouse over link activation changing color to orange doesn't more work.
How can change a nickname color but not hide link activation color switch onmouseover?
?

Black_Widow
09-11-2004, 04:31 PM
I mean this.
Now vb3 defaul style ) when mouse go over Admin or Mod nickname , they change color from blue to orange.

If I change Admin or mod nickname color using
<font style="color:#009900"> </font>
in admin control panel > usergroups > manage groups > administrator > html tag when mouse go over admin nickname it don't change color :(

calorie
09-13-2004, 08:20 AM
Go to AdminCP >> Styles & Templates >> Style Manager >> select Main CSS from the dropdown menu >> scroll to the very bottom, and in the empty box under the Additional CSS Definitions section, add the following CSS:


a:link span
{
color: #FF4400; text-decoration: underline;
}
a:visited span
{
color: #FF4400; text-decoration: underline;
}
a:hover span, a:active span
{
color: #22229C; text-decoration: underline;
}

Now use <span> </span> in AdminCP >> Usergroups >> Usergroups >> Edit Usergroup >> Username HTML Markup. Note that the links should be #FF4400 orange and, when you mouseover the links, they should be #22229C blue.

Black_Widow
09-13-2004, 05:20 PM
oh it works.
Great advice!!! thx :)