Ciao! ;-)
I need to reduce the image size in the single product page.
I add this code in quick css:
img.attachment-shop_single.wp-post-image {
width: 300px !important;
height: 434px !important;
}
but the line around the image is not good and the responsive don’t work well. Look http://www.asidogshow.it/prodotto/compton-range/
Can you help me? Thank you.
Hey dobermaraner!
Try this out instead.
.woocommerce-main-image {
max-height: 434px;
max-width: 300px;
}
.woocommerce-main-image img {
max-height: 424px;
max-width: 300px;
}
Cheers!
Elliott