Archived topic
submenu width
3 replies · Started by francesco on November 9, 2022
Viewing posts 1–4 of 4
is it possible to have a CSS for the submenu with the same width as the main menu?
Hi there,
you can try this CSS:
@media(min-width: 769px) {
.main-navigation ul.menu > li > ul {
width: unset;
left: 0 !important;
right: 0;
}
}
However, you must make sure that the sub menu items text is no wider then the top level menu item.
thanks david, it works perfectly.
Glad to hear that !
This archived topic is closed to new replies.