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

    I need to change the responsive size of the mobile header, so it is shown from 1300px to 0px, and the desktop header from 1300px to the bigest size possible.
    I know I have to add css code in the css area, but I can´t gind the way to ad the proper code.
    Enfold theme.

    #1271045

    Hey Tomatito11,

    Please try the following in Quick CSS under Enfold->General Styling:

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

    Best regards,
    Rikard

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