Same here. I imagine this is needed very often, but I could not find anything …
Have you been able to solve it?
EDIT: Looking at the source, there does not seem to be a proper way, sadly. I ended up adding some CSS:
body .wp-block-navigation__responsive-container-open:not(.always-shown) {
display: block !important;
}
body .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
display: none !important;
}
@media (min-width: 880px) {
body .wp-block-navigation__responsive-container-open:not(.always-shown) {
display: none !important;;
}
body .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
display: block !important;
}
}
-
This reply was modified 2 years, 7 months ago by lausianne.
-
This reply was modified 2 years, 7 months ago by lausianne.