So, I can't seem to find where to input name glows on my admin panel on my site. I was curiously how to make the names of certain users glow on formulation forums? Again, I know it can happen, I just can't seem to figure out how.
2 posters
Name Glow?
PhoenixWillow- Forumember
- Posts : 45
Reputation : 1
Language : English
Location : England
- Post n°1
Name Glow?
Ange Tuteur- Forumaster
- Posts : 13207
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania
- Post n°2
Re: Name Glow?
Hello @PhoenixWillow,
You'll have to use the CSS property text-shadow to apply a glow effect to members via the CSS stylesheet.
( Administration Panel > Display > Colors > CSS stylesheet )
Here's an example rule for the founder :
/u1 is the ID of the member's account. To see this ID go to the user profile and look at the addressbar. Where you see /u plus a number, that's their ID !! Just change the 1 to what their ID is.
The last thing you should change is the color # F66 that's a light red. To find the color code you want, I'd recommend using this : http://www.colorpicker.com/
You'll have to use the CSS property text-shadow to apply a glow effect to members via the CSS stylesheet.
( Administration Panel > Display > Colors > CSS stylesheet )
Here's an example rule for the founder :
- Code:
a[href="/u1"] {
text-shadow:0 0 6px #F66;
}
/u1 is the ID of the member's account. To see this ID go to the user profile and look at the addressbar. Where you see /u plus a number, that's their ID !! Just change the 1 to what their ID is.
The last thing you should change is the color # F66 that's a light red. To find the color code you want, I'd recommend using this : http://www.colorpicker.com/