css: filters how to disable them for a certain class?
- by jony
On IE I'm having a bit of trouble with my CSS:
body.transparent {
background-color: transparent;
color:#ffffff;
text-shadow: 0 -1px #000, 1px 0 #000, 0 1px #000, -1px 0 #000;
Filter:Glow(Color=#000000, Strength=1);
}
body.transparent a {
text-shadow: none;
filter: -;)
}
The glow filter needs to be excluded on body.transparent a, like the shadow is. But I just can't disable the filter for the the links. How do I do this??