[Resolved] De-activating the mobile menu

Home Forums Support [Resolved] De-activating the mobile menu

Home Forums Support De-activating the mobile menu

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #783345
    Peter

    Hi,
    Is there a way to completely disable the mobile menu system in GP, so that no matter how small a device the standard menu with lettered links is always present?

    For a client I am trying to solve this.

    Their website has a main menu with very few linksand they want the links to present even on small mobiles.

    I have seen in the documentation that there can be no breakpoint smaller than 768px.

    thanks.

    Peter

    #783695
    David
    Staff
    Customer Support

    Hi there,

    hmmm… maybe this would work:

    @media (max-width: 768px) {
        .main-navigation .menu-toggle {
            display: none;
        }
        .main-navigation ul {
            display: block;
        }
    }
    #783757
    Peter

    Hi David,
    Great! On the localhost dev.site it works!
    Thanks a lot for your help.
    Let me just remark, that we are still in the process of trying to convince our client about choosing a mobile first approach in this project too. ๐Ÿ™‚
    Thanks again.
    P.

    #783766
    David
    Staff
    Customer Support

    Awesome – they can take some persuading ๐Ÿ™‚

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