Hi,
I managed to make the menu dropdown work by specifying the position for the element (position: relative;) I was missing that part of the code!
ul#nv-primary-navigation.menu {
background: #FFFFFF;
position: relative;
z-index: 9999;
padding:1px 10px 1px 10px
}
Hope is useful!
You are the MAN! Was just dealing with this same issue. Your fix worked like a charm.
Thank you, sir!
Judah
Still had a problem when there were too many menu items, i.e. the menu was too long. When the submenu (the last item on my menu) was opened on mobile, the last couple submenu items were cut off and you had to scroll the menu to see them.
After a lot of testing, this was the solution that worked:
.responsive-opened #nv-primary-navigation { max-height:calc(100vh); }
The max-height was previously set to calc(100vh – 70px)
You’re welcome and thank you too, for the code!
Liz.