1

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?

Jeremy Walmsley
  • 177
  • 3
  • 13

1 Answers1

1

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

Community
  • 1
  • 1
Siamak Motlagh
  • 5,028
  • 7
  • 41
  • 65
  • Perhaps I should have been more clear. I don't want to add a shadow, I want to remove it. There is no shadow in Chrome but there is in IE. – Jeremy Walmsley Jan 25 '13 at 16:07
  • @user1932603 It's better to show your menu css code. but try to find your menu css class that has `filter:` and remove it. – Siamak Motlagh Jan 26 '13 at 06:26