how to change woocommerce product image size code example
Example: auto images size of woocommerce products
@media (min-width: 768px) {
.inside-wc-product-image {
width: 100%;
}
.woocommerce ul.products li.product a img {
height: 200px; /* adjust height */
object-fit: cover;
}
}