• Your mobile menu break point is way too big. And you’ve got a “billion” styles so I can’t easily just override them to change this. You really need to rethink this. Not all of us want to go mobile at 1140.

Viewing 1 replies (of 1 total)
  • Hey @graftedin,

    You can add this to change mobile menu break point. For example I will break point when screen is 768px :

    
    #nav-toggle { display : none; }
    .main-navigation .onepress-menu { display : block; }
    @media screen and ( max-width: 768px ) {
    #nav-toggle { display : block; }
    .main-navigation .onepress-menu { display : none; }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Mobile Menu Break Point’ is closed to new replies.