Hide header and menu on WooCommerce-Product pages?!

Hi,

I want to hide the header and menus on my product pages, so that only the product informations are visible.
I did try with custom CSS in Global CSS, with no luck:

.woocommerce nav.main_menu {
display: none!important;
}

Attached is an image of what I´m trying to achieve.
Thanks a lot in advance :slight_smile:

Hey @cgmel,

The Header selector in our theme is masthead and WooCommerce’s single product body class is single-product. With that said, the code you need is this:

.single-product .masthead {
  display: none;
}

Hope that helps.

Works like a charm! Thanks a lot for your help :slight_smile:

Glad that we could be of a help :slight_smile:

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