Currently, my part of the navigation drop-down menu is hiding behind the javascript slider that I have right below it. See Problem here . How can I display a dropdown menu above the slider?
Here are some of the CSS for the two divs that contain the corresponding navigation menu and slider.
Nav menu:
#nav {
width:1024px;
height:20px;
border-bottom:1px solid #ccc;
}
Slider:
#slider {
width:1024px;
height:300px;
background: #353A33;
padding-bottom:5px;
}
Any ideas?
source
share