You may wish to change the proportions of the single product ‘summary area’. So, make the main product image a bit smaller and make the content area to the right wider.
You can achieve this with a small snippet of CSS, added to:
Appearance > Customize > Additional CSS
.
1 2 3 4 |
@media (min-width: 993px) { #page .product .woocommerce-product-gallery {width: 38%; } #page div.product .summary { width: 46%; } } |