I use a regular wordpress nav to display a two level menu in the footer and I would love that menu to be shown completely to display both level of the nav. What is the best solution ?
Thank you
I use a regular wordpress nav to display a two level menu in the footer and I would love that menu to be shown completely to display both level of the nav. What is the best solution ?
Thank you
Hey Loic,
are you using the regular Nav Menu element? If so please try the following custom CSS on the element:
root .sub-menu {
display: revert;
opacity: revert;
position: revert;
visibility: revert;
}
If you also want to hide the dropdown (button) icons:
root button {
display: none;
}
Best,
André
I did not know about the revert css property!
Thank you, I learn everyday!
Hi guys, is it possible to achieve that the submenu is only expanded if a subitem is active?