Skip to content Skip to sidebar Skip to footer

Multilevel Nav Menu Not Showing 3rd Level

the third level of my menu doesn't show up when hovering the 2nd level. I know that this is because overflow:hidden is styled on the 2nd level ul, however, if I make overflow:visi

Solution 1:

Add overflow:visible when hovering over the ul element. In doing so, the transition will still take place because the overflow is hidden prior to hovering over the element.

Updated Example

#menuulli > ul:hover {
    overflow:visible;
}

Post a Comment for "Multilevel Nav Menu Not Showing 3rd Level"