0

Hi I've finally got Suckerfish working and styled but in IE7 it is hidden behind the divs below it. See the dropdown on the 'Your Video/Pics' button here.

I know usually a z-index would solve the issue but in this case it seems not. Can anyone help?

Don't worry this site is not supposed to work in IE6 ;)

morktron
  • 915
  • 4
  • 17
  • 31

1 Answers1

2

Try adding:

#header {
    position: relative;
    z-index: 1;
}

For IE, the entire block has to have a higher z-index than the block below it.

Jeffery To
  • 11,836
  • 1
  • 27
  • 42
  • Thanks Jeffery To, you are right and your solution makes perfect sense. I should have thought of that ;), thanks again, much appreciated :) – morktron Apr 27 '10 at 09:53