Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1394564

    My project https://turunlinnanravintolat.fi
    I want the burger menu to be activated for tablets and phones. Have done that in settings, but now only works for phones. I use the Chrome Inspector and it activates the text menu area without menu items when viewing in tablet mode.

    Login credentials attached

    John

    #1394592

    Hey pramedia,

    You can activate the burger menu at any screen size using this CSS:

    @media only screen and (max-width: 1024px) {
      nav.main_menu {
        display: block !important;
      }
      #avia-menu .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
    }
    

    Simply change the 1024 value to the pixel value of your choice.

    Best regards,
    Rikard

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