Tagged: enfold
When you click on hide header on the page I’d like to modify it so it JUST takes away the navigation but it doesn’t get rid of the logo on the left. Is there an easy function tweak to get this effect? I’d like to not need CSS for this with the page ID as the client wants to create many different landing pages and I want it to be easy for him to maintain.
Hey Andrea,
Instead of hiding header, you can add Code Block element to the pages where you would like to hide your menu and add following code inside your code block element
<style>
nav.main_menu {
display: none;
}
</style>
Cheers!
Yigit
OMG you just rocked my world. I never thought to do page specific CSS on a site. Yay! Worked great!