drop down menu display

Discussion in 'HTML & Website Design' started by Alex Petrus, Apr 30, 2013.

  1. #1
    http://techplus.ro/identify/

    How to set the drop-down sub menu header to appear over the slideshow?
     
    Alex Petrus, Apr 30, 2013 IP
  2. ansaripk

    ansaripk Greenhorn

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #2
    I have checked this website and menu. You can easily make menu appear over slideshow by modifying style.css file. Open the style.css file in editor and look for
    nav ul ul {
    display: none;
    }
    and add a line of css code here:
    z-index:900;
    and final code would look like this
    nav ul ul {
    display: none;
    z-index: 900;
    }
    Your menu is now appear over slideshow. Cheers!
     
    ansaripk, Apr 30, 2013 IP
  3. Alex Petrus

    Alex Petrus Member

    Messages:
    59
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #3
    cheers
     
    Alex Petrus, May 3, 2013 IP
  4. ansaripk

    ansaripk Greenhorn

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #4
    Feeling good to solve your problem :)
     
    ansaripk, May 3, 2013 IP
  5. Alex Petrus

    Alex Petrus Member

    Messages:
    59
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #5
    :)))
     
    Alex Petrus, May 3, 2013 IP
  6. Alex Petrus

    Alex Petrus Member

    Messages:
    59
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #6
    everybody has to learn from somebody else....
     
    Alex Petrus, May 3, 2013 IP