How can i block the menu from showing up just on the home page?

I have a custom transparent menu over the top of a full wide and tall home page image to use on the home page but need the themes menu on all other pages.

How can i turn off the theme menu on just the home page?
Thanks

null

Hey Edward,

There’s no way to do that via the theme settings but you can hide it via CSS. Try the CSS snippet below.

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

Ben

Yes thank you that is a life saver…
And a way to use the new custom menu on the home page and still have blog page menus we had talked about before so the home can have a super nice menu over the big home image and all the other pages use the theme one. This will be my new way to design home pages now this way the menu is not expected to match the other pages.

Thank you Thank you.

Ok one more ?s if i wanted it to now show on some other pages will this work for that to?

Can home be changed to a page name or number or something? I can see using that at some point to.

Hey Edward,

Yes, each page has its own unique page ID class added to the body tag which you can check using the element inspector. Check the screenshot below for reference.
http://imgur.com/57V0exG

Ben