I have just been testing a website in IE and everything works fine apart from the drop down menu in IE is adding shadows to the text. It looks fine in Chrome and firefox, just not working in IE.
address is: www.rbc.org.uk
Any ideas?
I have just been testing a website in IE and everything works fine apart from the drop down menu in IE is adding shadows to the text. It looks fine in Chrome and firefox, just not working in IE.
address is: www.rbc.org.uk
Any ideas?
IE 8,9 does not support text-shadow
like other standard browsers. You should do this by:
Static Filters
example:
.shadow {
filter: progid:DXImageTransform.Microsoft.Shadow(color=#0000FF,direction=45);
}
For more information i strongly recommend you to google and check out this question:
css3 text-shadow in IE9