Removing MENU block

Hello, i’d like to create a website ONE PAGE but WITHOUT MENU, and in cornerstone, i can’t get rid of the top menu block , can you help me to do it please ?

Thanks :slight_smile:

Hi there,

Thanks for writing in!

There is no option in cornerstone to disable menu bar, but you can choose no header template for the page so that there won’t be a header anymore.

If you want to keep the logo and only needs to hide the menu bar. You can use custom CSS to hide the bar.

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

Please add this to your Theme Option -> Global CSS.
Hope this helps!

Hey :slight_smile: so if i want to keep the logo, do i keep “Blank - Container | NO Header, Footer” ?

or i keep the default and just add " .x-nav-wrap {
display: none;
}" ?

Also, in theme option i can only see " style.css" where i can access the global CSS ? Sorry, i’m a noob haha

Hi There,

If you want to keep the logo, keep the existing template and add the CSS rule into your X > Theme Options > Global CSS area.

Please refer to the screenshot below.

Hope that helps.

thanks for the answer, i tried but it do nothing :confused: i have error message asking me to put menu, or i have nothing…

Hi There,

Please provide us with the URL to your referenced site/page, so that we can assist you accordingly.

Thanks!

http://golddiggercp.com

there we go :slight_smile:

Hi There,

Please use the following CSS rule and it should hide your menu.

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

Hope that helps.

thanks alot, it works !

you are most welcome!

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