Hello,
Widget content (with extra menu) disappears when using smartphone.
This only happens if I put a menu in it, see https://lacasatorre.nl/portfolio-item/zitkamer/
It is visible on a normal computer screen and on an iPad.
See enclosed screens: https://imgur.com/a/MURohxN
It is presented visibly with news items, see https://lacasatorre.nl/restaurants/
Regards Tom
I have now solved the problem, it was related to the following CSS:
@media only screen and (max-width: 1000px) {
nav.main_menu, #menu-item-search {
display: block !important;
}
.menu item {
display: none;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}
Hey tomcusters,
Great, I’m glad that you found a solution, and thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
When I use the code below (as with other sites) it works fine.
@media only screen and (max-width: 1150px) {
nav.main_menu {
display: block !important;
}
#avia-menu .menu-item {
display: none;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}