Log in

View Full Version : Need Help with Drop Downs



seanjpatel
08-22-2008, 12:38 PM
Hey all!
I have a bit of a problem that I can't figure out. On my category pages for my website the drop down menus fall behind certain items...ie. the DD Memory Scroller in the upper left hand corner. Here is the link http://www.bluemonkeyclothing.com/c/MENS_TEES/Men's+Tees.html
I know I have to use CSS positioning and Zindex but can't figure out how to insert the code. I really appreciate all your help.

d_reaper86
08-22-2008, 01:00 PM
if your menu is located in a seperate div to the rest of the content the it should be as simple case of adding this to the div styling:

z-index:2; - in the menu div

and

z-index:1; - in the div below the menu.

Medyman
08-22-2008, 01:08 PM
if your menu is located in a seperate div to the rest of the content the it should be as simple case of adding this to the div styling:

z-index:2; - in the menu div

and

z-index:1; - in the div below the menu.

If those elements are either relatively or absolutely positioned. If they're not, just add position:relative without adding any offsets, and it won't change your layout. And then, add z-index as d_reaper86 mentions.