View Full Version : need help with filters


sarolabelle
02-03-2003, 11:05 PM
hey. I wrote a style sheet like this:

A:visited
{ text-decoration: none; color#ffffff; filter:glow(color=#ff0000, strength=3) }


This isn't working. As you can see I want it to glow. However, I only want the visted link to glow and nothing else. How would I do this?

Thanks!!

Alcy
02-03-2003, 11:20 PM
A:visited
{
text-decoration: none;
color:#ffffff;
filter:glow(color=#ff0000, strength=3); width:150px;
}

You missed the colon between "color" and "#ffffff" and the width - you can change the number (I just shoved a random one in there) :).