Archived topic
Navigator Dropdown menu
9 replies · Started by Matthieu on March 1, 2019
Hi Everybody !
I have a problem on vertical menu on generate press, navigator theme from GP Librairy.
The SubMenu cover the initial menu when the dropdown is open.. I searched everywhere in the css to avoid this, but finnally ask you if you have any idea...
Because an image is better than any french-english explanation :

I would like to have a normal fixed dropdown submenu ...
Any ideas ??
Thank you !!
login : demo
pwd : demo
Hi there,
can you provide us a link to the site? You can edit your original topic and use the Site URL field for privacy.
I did that ! Thank you !
Login : demo
pwd : demo
Do you want the sub menu to float to the right when opened?
Or for it to display beneath the parent menu item?
Beneath the parent menu item and stay here.. like when its on hover but stay when we clic... !
Try this CSS:
.dropdown-click .main-navigation ul.toggled-on,
.dropdown-click .main-navigation ul li.sfHover>ul.toggled-on {
position: relative;
}
Wow ! Perfect David ! Thank you very much ! Any way to keep the submenu open when we navigate to sub menu items ??
Thank you very much !
Try this:
.main-navigation .main-nav ul li.current-menu-parent > .sub-menu {
position: relative;
left: auto;
opacity: 1;
visibility: visible;
pointer-events: auto;
height: auto;
overflow: visible;
}
Woow ! Really cool David ! Thank you very much !
Awesome - glad to be of help :)