Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1410332

    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;
    }
    }

    • This topic was modified 1 year, 5 months ago by tomcusters.
    • This topic was modified 1 year, 5 months ago by tomcusters.
    • This topic was modified 1 year, 5 months ago by tomcusters.
    • This topic was modified 1 year, 5 months ago by tomcusters.
    • This topic was modified 1 year, 5 months ago by tomcusters.
    #1410382

    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

    #1410444

    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;
    }
    }

    #1410453

    Hi,

    Great, I’m glad that you managed to find a solution :-)

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.