I have a problem with a 4th level drop down not working in Chrome, but it works in Firefox, IE 8.
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;
}