Yep... I'm having an issue in IE 7

Hey there,

I’m having an IE 7 issue. Works fine everywhere else.

The site is http://www.tamismightinteriors.com/dev/ I think I know what’s going on, but I tried several things and and I can’t figure out how to fix it.

The issue is that the logo is covering part of the navigation and therefore parts of the navigation is not working (only in IE 7). This site is a wordpress predone theme with a slight customization in the header area. I had to move the navigation up a bit to accommodate the design. When I look in firebug I can see that the .logo is on top of #primary_menu. But the menu area has a z-index of 2000 so I’m guessing that’s why it’s working everywhere else. 95% of the CSS was done by whoever did the theme and in the back-end in the theme’s control panel I’m able to add and modify a few things.

So anybody know how I can get it so it works in IE7?

Thanks so much!
Daniel

In your ie7.css stylesheet it has the following:

#header {
    position: relative !important;
    z-index: 10000 !important;
}

Simply remove this and it will work fine in IE7.

Always something simple. Thanks Chris!