Hello Enfold Team,
I would like to hide the “full width submenu” for large and medium-sized screens.
Can you tell me how to do this?
Many thanks in advance. With best regards,
Severin
Hey Severin,
Thank you for the inquiry.
This css code should hide the full width submenu container on larger and medium screens, and keep it visible on mobile view.
@media only screen and (min-width: 989px) {
#top .av-submenu-container {
display: none !important;
}
}
Best regards,
Ismael