Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #367875

    My apologies if I missed this while searching through the forum, but is there a way to hide the secondary menu at the very top of the screen on mobile (website attached in Private Content section)? Ideally, I’d like to add those elements to the main menu on mobile, so they show up when someone taps the menu button.

    #367889

    Hey!

    Try adding this code to the Quick CSS:

    @media only screen and (max-width: 767px) {
        nav.sub_menu {
            display: none;
        }
    }

    Cheers! 
    Josue

    #367983

    Thanks, Josue! Is there a way to remove the social icons from the top on mobile, too?

    #367985

    Hi!

    Use this code instead:

    @media only screen and (max-width: 767px) {
        #header_meta {
            display: none;
        }
    }

    Regards,
    Josue

    #367989

    Thanks! That did the trick.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Hiding secondary menu on mobile’ is closed to new replies.