Log in

View Full Version : Layering problem with CSS Menu



Modemguy
03-23-2009, 02:16 PM
I've created a website(www.tabbaramedical.com/test) with a css drop-down menu. The problem is the menu is showing up BEHIND an not IN FRONT of the content.

Someone mentioned I should use z-index but am not sure what that is.

Any help is greatly appreciated.

coothead
03-23-2009, 02:58 PM
Hi there Modemguy,

try adding the highlighted attribute to this rule...


/*Top level list items*/
.jqueryslidemenu ul li{
position: relative;
z-index:1;
display: inline;
float: left;
width:12%;
text-align: center;
}


coothead