Combine product category designs
-
Hi,
You have three category design options in theme settings> shop.
I want to use the ‘alternative’ design, but I don’t want that clear black box (and product count – see image) to cover the image. I want the image to zoom in like the ‘default’ design.
What custom css code do I need to get this to work? Thanks!
Attachments:
You must be
logged in to view attached files.
Hello,
Try to add this code snippet to achieve this.
.cat-design-alt:hover .products-cat-number {
display:none;
}
.cat-design-alt:hover .product-category-thumbnail {
opacity:1;
}
Regards