Can I remove the header landmark from just the main shop page?

Hi, I’m using WooCommerce with your theme and I’m trying to remove the title ‘The Shop’ and the breadcrumbs from the top of the main Shop page. I’ve tried to add some CSS in but it’s not removing it. Would you mind taking a look for me?!! I’ll put the URL in a secure note as I’m building it on a temporary link.

Here’s the CSS I’ve tried:

.page-id-32 header.x-header-landmark {
display: none;
}

.shop header.x-header-landmark {
display: none;
}

Thanks!

Hi there,

Please try this code:

.post-type-archive-product .x-header-landmark {
    display: none;
}

You can find more info on how to check for CSS selectors here.
Then information about writing your custom CSS here.

Hope this helps.

Hi, that did it, thanks!

Thanks for the info on the CSS.

Cheers

You’re most welcome. :slight_smile:

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