tags:

views:

26

answers:

1

Hi everyone, the problem is that in IE7, the dropdown under "Departamentos" its cut by the banner, and it seems to be pushed to the right...

This should be a very easy to fix but I have little experience with IE fixes... I try for some time but I need your help, can you check it out??

Link to the Website

Thanks

A: 

It's same in IE8 because your document is rendered in quirks mode. Move the comments before the doctype declaration after the declaration. Anything before the doctype will trigger quirks mode in IE.

After you do that give .nav-wrap a z-index higher than #mainData and the submenu will show in IE7. Then give your submenu ul a left:0; to position it right.

Daniel
Thanks for your advice, I did what you said but still in IE7 is cutting behind the banner, I don't understand why, if it has z-index higher in the header...
Omegakenshin
You removed the stuff before the doctype, but the class .nav-wrap does still not have a z-index higher than #mainData.
Daniel
I miss to add position to the header... Fixed, Thank you Daniel
Omegakenshin