Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #860523

    Teeebest
    Participant

    I have a client that wants all menu items displayed on mobile devices. How can that be achieved please? (he want the hamburger menu icon removed on mobile view, so that all menu items can be visible at once as it is on desktop) the website is qbandentertainment.com. Thanks.

    #860651

    Zeshan
    Member

    Hi there,

    Thanks for writing in!

    To achieve that, add following CSS under Custom > CSS in the Customizer:

    @media only screen and (max-width: 979px) {
      .x-btn-navbar {
        display: none !important;
      }
      .x-nav-wrap.mobile {
        display: block !important;
      }
    }
    

    Hope this helps. 🙂

    Thank you!