Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1089144

    Hello together,

    a Customer of mine has a really long Navigation-Bar.
    I want to set the Break-Point for the Burger Menu already at 1200px.
    Where can I do that?
    Tried already something, nothing works.
    The BreakPoint comes at 990px

    Thanks a lot,
    felixl

    #1089245

    Hi felixl

    Try the following code inside Quick CSS:

    @media only screen and (max-width:1200px){
    .av-main-nav>li.menu-item-avia-special{
    display:block;
    }
    .av-main-nav>li.menu-item{
    display:none;
    }
    }

    Best,
    Michael

    #1089507

    Hi felixl,

    If Michaels code doesn’t work the please try this:

    @media only screen and (max-width: 1200px) {
      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

    #1090411
    This reply has been marked as private.
    #1090549

    Hi felixl,

    You can validate that css through a service like
    https://jigsaw.w3.org/css-validator/

    And put the code Rikard gave you on top of the Quick css.

    Best regards,
    Victoria

    #1090964

    hello dear supporters :-)

    thanks a lot – now it´s working.
    yipehhh!

    have a great day,
    felixl

    #1091147

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Breakpoint Navigation Enfold’ is closed to new replies.