How to disable hamburger menu on mobile Zelle

Important notice: This product is now in maintenance mode and is no longer being actively developed or supported. Updates and bug fixes will not be provided unless they relate to security concerns.

If you don't have so many menu items and you would like to disable the hamburger menu icon on mobile, here is how you can do it : 

  1. Install a custom css plugin like : https://wordpress.org/plugins/simple-custom-css/
  2. Add the following css code :
  3. @media screen and (max-width: 768px) { 
      .navbar-toggle { 
           display:none !important; 
       } 
       nav.navbar-collapse { 
          display:block !important;
     } 
    .responsive-logo { 
      float:left !important; 
    } 
    nav.navbar-collapse ul li { 
     width: auto !important; margin-left: 10px !important; border-bottom: none !important; 
    } 
    }
    	

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us