Skip to content
otter-page-builder-blocks-extensions

Why start from scratch? Otter Pro gives you 40+ ready patterns, premium blocks, and priority support.

Learn More →

How to remove the header on product category in Hestia

Hestia theme adds a header area on all pages and the theme options don't allow this one to be removed from the WooCommerce Category Page.

This can be achieved by adding the following code in Dashboard -> Appearance -> Customize -> Additional CSS.

.archive.woocommerce-page.tax-product_cat .main.main-raised  {
	margin: 0;
	box-shadow: none;
	background-color: inherit;
	padding-top: 100px;
}
.archive.woocommerce-page.tax-product_cat .page-header  {
	display: none;
}

How it looks by default

How it should look with this code