How to hide the menu from a page?

Hi BeaverBuilders :slight_smile:

Is it possible to hide the menu from a page? I’m trying to create a landing page and don’t want the menu in the header, however it keeps popping up as ‘Choose Menu’.

I’ve had a look through the Theme Settings and searched the topics here but couldn’t find anything specifically related to this. Any help is appreciated :slight_smile:

Ash.

Hi Ashley! Thanks for reaching out. You can hide the navigation menu with a bit of CSS. You’re right, there isn’t a way to completely remove the menu from the theme settings. Try putting this snippet in the code section (CSS) of your theme settings:

.fl-page-nav-wrap {
    display: none;
}

Thanks Robby, I’ll give that a try tonight.

That worked thanks Robby :slight_smile:

Beautiful! Let me know if you have any other questions.

This solution works great site-wide, but what about a specific page? or homepage?

To kinda answer my own question - I see that each page has it’s own CSS class on the body tag, like page-id-32, with 32 being the pageid.

So I just put display:none in the css like this:

.page-id-13 .fl-page-bar {
display: none;
}

Works!

Hey Brad,

Glad that worked for you, enjoy BB and let us know if you need anything further! :slight_smile:

Thanks!

KC