Results 1 to 3 of 3

Thread: Need Help with Drop Downs

  1. #1
    Join Date
    Aug 2008
    Location
    Tucson, AZ
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Need Help with Drop Downs

    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/...39;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.

  2. #2
    Join Date
    Aug 2008
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    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.

  3. #3
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    Quote Originally Posted by d_reaper86 View Post
    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.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •