Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If you look at the main navigation menu on this page you see that I'm using a drop shadow on a:hover, however, in IE9 the shadow is buggy - it doesn't always show, and often remains after the hover is no longer active. I want to either fix it, or get rid of the shadow only in IE.

my css is:

    #menu a {
  color:#fff;
  padding-top:10px;
  padding-right:10px;
  padding-left:10px;
  text-decoration:none;



}

#menu a:hover {

 background:#e58f56;
 border-top: 0px solid transparent;
 border-bottom: 10px solid transparent;
 border-left: 10px solid #bbb2b1;
 border-right: 0;
 border-top-right-radius:5px;
 border-bottom-right-radius:5px;
-webkit-box-shadow: #888 4px 4px 4px;
-moz-box-shadow: #888 4px 4px 4px;
box-shadow: #888 4px 4px 4px;



}

Any ideas?

share|improve this question
add -ms-box-shadow (go ahead and add -o-box-shadow too) – albert Nov 12 '11 at 19:45
1  
IE9 uses the standard box-shadow property, so there is no need for -ms-box-shadow (in fact, I'm not sure if a prefixed version even exists since IE didn't support box-shadow until version 9 anyway). – daGUY Nov 12 '11 at 19:55

2 Answers

I just dropped your code above into a js fiddle and it worked fine in IE9! Must be something to do with the 'pie' fix your calling in. Maybe try remove it and have a check.

The effect you are attempting is definitely 'do able' in IE9.. Don't give up:)!

share|improve this answer
'pie' 'js fiddle' ?? – Findo Oct 25 '11 at 9:02

Are you sure the shadow isn't showing at all? IE9's implementation of box-shadow renders the blur at about half the distance that other browsers do (I actually posted a question about that here). For low values, it's possible that IE9's rendering is so slight that you don't notice it. Just as a test, try making the blur radius much larger to see if it shows up in IE9.

share|improve this answer
hi,yeah, it shows sometimes, and often then remains after the mouse-off... – Findo Nov 13 '11 at 17:18
I don't see any reason why it wouldn't work the way you have it set up. Maybe try adding box-shadow: none; to the #menu a declaration? – daGUY Nov 13 '11 at 17:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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