Remove Menu from Homepage.

How can I remove the menu bar from the homepage? But keep it on all other pages.

Hi @kieranp,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

body.home nav#site-navigation {
    display: none;
}

Best Regards,
Movin

Hi @Movin

I can remove the menu as you state above but how do i get rid of the white background the menu was on and just have my landing page image full screen? see attached image for the top of the page.

Thanks

pelagos1

@pelagos1 To help us keep support thread separates could you please create your own thread for your question here https://colorlibsupport.com/c/shapely/ instead of replying on others thread as it makes the thread messy and hard to read.

If you want to you can also add reference of this thread in your newly created thread.

We would be more than happy to help you on your new thread.

Hi
you can remove navigation bar from home page by add those lines at top of style.css
Admin Area -> Appearance -> Editor -> and select stylesheet (style.css) from right side

body.home nav#site-navigation {
display: none;
}
body.home .nav-container {
display: none;
}