[Resolved] Menu display in mobile – turn off/on?

Home Forums Support [Resolved] Menu display in mobile – turn off/on?

Home Forums Support Menu display in mobile – turn off/on?

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1033063
    Norman

    Hello,

    I’m wondering if there is a way to either rename or at least remove the top “menu” display for this mobile preview?

    I do have the Secondary nav activated so I’m sure that’s what that is for, but is there any way to tidy this up for mobile?

    2019-10-12_1722

    #1033126
    Leo
    Staff
    Customer Support

    Hi there,

    Just to make sure, you want to remove the secondary navigation on mobile?

    If so this CSS should do it:

    @media (max-width: 768px) {
        #secondary-navigation {
            display: none;
        }
    }

    Adding CSS: https://docs.generatepress.com/article/adding-css/

    Let me know if this helps ๐Ÿ™‚

    #1033133
    Norman

    Hi,

    Actually, I want to remove the primary navigation as I’m using ubermenu for that.

    #1033134
    Leo
    Staff
    Customer Support

    Try this instead:

    @media (max-width: 768px) {
        .main-navigation .menu-toggle {
            display: none !important;
        }
    }
    #1033135
    Norman

    Hi Leo,

    That works great.

    Is there a way to change the name of “MENU” that shows for both menus on mobile?

    In other words, have one called “Member Menu”

    The other, “Main Menu”

    #1033138
    Norman

    2019-10-12_2018

    #1033159
    Leo
    Staff
    Customer Support
    #1033167
    Norman

    Very helpful. Thanks again.

    #1033175
    Leo
    Staff
    Customer Support

    No problem ๐Ÿ™‚

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