Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Huge problem in css nav (showing beneath page elements) 1

Status
Not open for further replies.

Maven4Champ

Technical User
Jun 16, 2004
154
All,

I have an urgent situation that I have tried to resolve with no success. We are going live with our new site (developed in the Joomla CMS software) and I have all my css in the following file:

The site can be found here:

As you notice, in IE and FF the nav drop-down menus show BENEATH all the elements such as the tabbed browsing, headline photo, etc.

I have tried using positioning and z-index attributes but nothing seems to work for me. Any ideas of how I could resolve this through css to make the sub-menus consistently appear over (on top) of the other page elements...
 
Give your #header z-index. 2 will be enough, no need to go sky high.

This happens because z-index determines z positions between sibling elements. That's why all the elements inside header were below all the elements inside the #content-container (the latter appears later in the code which makes it higher on the z plane). Giving elements inside the #header a high z-index number has no effect because it only refers to relationships inside the #header element (which in your code always appears below the content).

___________________________________________________________
[small]Do something about world cancer today: Comprehensive cancer control information at PACT[/small]
 
That makes PERFECT sense. I was trying to do it at the menu level instead the menu is wrapped by the header div and class so that fully makes sense now. And it appears to be working in older versions of IE as well.

Thank you so much and REP to you!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top