Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Drop down menu over pictures

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #30620
    spunkil
    Participant

    My drop down menu – Galleries box, when I’m in one of the galleries it’s not on TOP of everything but hided by the pics,
    Any ideas? http://www.soniagarcia.co.il/?page_id=318&lang=en

    #77638
    ImpInaBox
    Member

    That’s happening because your drop down menus are defined in the HTML file before the pictures, so they’re underneath them in the z-order. If you define the drop menus AFTER the pictures then when they appear they will be on top of the pics.

    Have a look here: http://www.abbeydale.net/web-design-sheffield.php – the drop menus are below the main content – <ul class=’navdrop’…>. They are re-positioned in javascript when they’re displayed.

    #77648
    jamygolden
    Member

    I’m not sure if adding a z-index to ul#suckerfishnav_2 will work in all IEs properly. If it doesn’t, try adding a z-index and position relative to #navb.

    #navb{
    position: relative;
    z-index: 100
    }
Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.