Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem with a 4th level drop down not working in Chrome, but it works in Firefox, IE 8.

http://azra.flagstaffit.com

Click on 'Grand Canyon Trips' --> 'Length Options' -->

You should see 4 length options and then 2 options (4th level) to the right of "Bright Angel".

In Chrome it does not show up.

The CSS for 4th level is this:

/* Forth LEVEL of the navigation ---------->  */
/* hides the nested UL (4th level nav) before you hover */
#myNav li ul li ul li ul li ul {
        position: absolute;
    width: 220px; 
    left: -999em;
}

.pagenav ul ul li ul li ul li {margin-left:20px;}

/* shows the nested UL (4th level nav) when you hover */
#myNav li ul li ul li ul li:hover ul, #myNav li ul li ul li ul li.sfhover ul, #myNav li ul li:hover ul li ul li ul, #myNav li ul li.sfhover ul li ul li ul {
    background: none;
    left:220px; 
    display:block; 
    z-index:1000;
    position:relative;
    top: -35px;
}

/* style for the nested UL (4th level nav) */
#myNav li ul li ul li ul li:hover ul, #myNav li ul li ul li.sfhover ul {
        background: none;
    background-color: #84222E;
    color: #fff;
    margin: 0px;
    padding: 0px;
    border: none;
    width: 180px;
}

/* style for the LI items (nav items) within the nested UL (4th level nav) */
#myNav li ul li ul li ul li:hover ul li, 
#myNav li ul li ul li ul li.sfhover ul li {
    color: #B97153; 
    background: none;
    background-color: #84222E; 
    width: 220px;
    display: block;
    padding: 0px; 
    margin: 0px;
    height: 30px;
    text-align: left;
    border: none;
    border-bottom:1px dotted #fff;
}

/* style for the links withing the LI items (nav items) within the nested UL (4th level nav) */
 #myNav li ul li ul li ul li:hover ul li a,
 #myNav li ul li ul li ul li:hover ul li.current_page_item a,
 #myNav li ul li ul li ul li.sfhover ul li a,
 #myNav li ul li ul li ul li.sfhover ul li.current_page_item a,
 #myNav li ul li ul li:hover ul li ul li a,
 #myNav li ul li ul li:hover ul li ul li.current_page_item a,
 #myNav li ul li ul li.sfhover ul li ul li a,
 #myNav li ul li ul li.sfhover ul li ul li.current_page_item a {
    color: #B97153; 
    background: none;
    background-color: #84222E; 
    width: 200px;
    height: 20px;
    display: block;
    padding: 5px 10px; 
}

/* style for the hover state on the links within the LI items (nav items) within the nested UL (4th level nav) */
#myNav li ul li ul li ul li:hover ul li a:hover {
     margin: 0px; 
     color: #84222E;  
     background: none;
     background-color: #fff;
}
share|improve this question
wont even let me hover above the submenu, it hides the menu when I try to do this. Actually its intermitent, sometimes it works other times it doesnt – Jon Taylor Aug 6 '12 at 18:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.