Archived topic
woocomerce image large
3 replies · Started by Escobar on August 6, 2020
How can I make product images come out full length on woocommerce category.
As they are now it is a little strange.
Plese can you see for expample webpage: https://herramientasbazarot.com/accesorios-de-cocina
Thnaks in advance.
Hi there,
you have this CSS in Customizer > Additional CSS:
@media (min-width: 768px) {
.inside-wc-product-image {
width: 70%
}
.woocommerce ul.products li.product a img {
height: 200px;
object-fit: cover
}
}
This is currently fixing the height to 200px and making the image 'fill' the space.
Do you need this CSS?
You can set a different image size for the shop in Customizer > Woocomemrce --> Product Images.
Excellent. You do the trick. Thank you very much.
You're welcome