Make shop category images larger

Hi,

When you go to the shop you can see the categories the products are split in to. Is there a way to make the category images larger?

Hello there,

I hope you are doing well today.

You can change the image size in Woo-commerce by going to Woocommerce > Settings > Products > Display and change the Catalog image size to whatever you need it to be.

Please have a look at the following article which provides more information:

Best Regards,
Support

Thanks I’ve managed to get the images bigger but I wanted the category images to be larger? If you go to the front page of the shop the images are tiny and even increasing the images inside the store doesn’t appear to make any difference?

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS


@media (min-width: 768px) {
.woocommerce.post-type-archive-product .products li.product-category.product {
    width: 46%;
}
}