0

If you look at the homepage of the following site (in IE7 only):

http://cmse.bemoore.com/

the superfish dropdown disappears behind the table. I have tried playing with the z-index to no avail.

Can anyone make any suggestions what to try?

Thanks

bemoore
  • 84
  • 7

1 Answers1

0

I fixed it myself. By adding the following 2 lines to the .main-navig class:

/* Added to fix z-index bug */
z-index: 1000;
position: relative;

basically the <div> containing the dropdown menu needs to have a higher z-index than the divs below it. Whew ! Thought that was going to be harder.

Also the position: relative is key.

madth3
  • 7,275
  • 12
  • 50
  • 74
bemoore
  • 84
  • 7