I've looked high and low and it seems like an easy enough question.

I am using CSS3 shadows (box and text) and it really destroys any readability in IE, so I want to just remove all shadows in this style sheet. I have a conditional style sheet set up for IE8 and below.

I've tried this:

text-shadow: 0px 0px 0px transparent; 
filter: dropshadow(color=transparent, offx=0, offy=0);

But to no avail. Any ideas?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

ie8 doesn't understand what text-shadow is, so overriding it is pointless. your readability issues could stem from any number of things: font-stack, cleartype, etc. without more info, pretty hard to tell.

link|improve this answer
I have commented out anything I thought would be the problem and it stems directly from this: filter: dropshadow(color=#fff, offx=0, offy=1); – jordaninternets Oct 20 '11 at 19:55
1  
oh, you're using filters to apply the shadows. um...take your filters out and put them in a style sheet for versions of ie greater than 8 – albert Oct 20 '11 at 19:58
Oh okay, all of my googling got me to another filter that I thought applied only to under IE9, but it looks like even IE9 has no shadow support (typical...) – jordaninternets Oct 20 '11 at 20:16
@jordaninternets - They removed the filter style in IE9, so they could support CSS3 properly. However there were a few things that could be done previously with filter that aren't in IE9's new CSS features, so some functionality has been lost. Gradients is one, and from your comment here it looks like text shadow might be another. (but it's worth it to be rid of that hateful filter style!) – Spudley Oct 20 '11 at 21:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.