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

    Hello,

    I have a case where I need to display the menu icon (for mobile) below 1150px. How do I do that?

    I change the header option to “Active for Smartphones and Tables (browser width below 990px)”, but 990px ​​is not enough, I need it to be 1150px.

    Thanks
    João Brots

    #1020886

    Hey JoaoBrots,

    Try adding the following to quick css:

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

    Best regards,
    Jordan Shannon

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