Remove Menu on homepage

I am trying to create a mobile app looking landing page for the homepage. I want a header, but would like to remove the menu at the top. How do you do that?

Hi Bryan,

Thank you for reaching out to us. You can do this with custom CSS, try adding the following code in the Theme Options > CSS:

.home .x-nav-wrap.desktop {
    display: none;
}

@media screen and (max-width: 979px) {
    .home .x-btn-navbar {
        display: none;
    }
}

Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:

Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!

That worked to remove the button, but there’s still the white menu bar below the main header/logo. See attached view. How can I also get ride of that white bar?

Hello Bryan,

Please disregard the previously given css. Remove all those css code and use this code instead:

.home .x-navbar-wrap {
    display: none;
}

This will remove the white bar including the navigation.

Please let us know how it goes.

I’m having an issue now with the header. I’m not sure when this changed, or what caused it, but now the logo had shrunk in size and it’s showing a weird login html link below it. Can you help me narrow down what’s causing this? You can see what I’m talking about if you visit UmanityLab.com.

Hello Bryan,

Are you referring to this?

Your logo image is only 111x25 pixels. The Login menu item is coming from your menu. Please go to Appearance > Menus and make sure to add more menu items.

Hope this helps.

This still isn’t working. It removes the menu from the homepage, but the rest of the pages have a message that says “assign a menu”. I want to remove the menu and menu bar entirely from the website. How do I do this?

Hello Bryan,

If you want to remove the navbar menu in the entire site, then this custom css should work:

.masthead-stacked .x-navbar-wrap {
  display: none;
}

We would love to know if this has worked for you. Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.