Ah if that’s the case, you should do the following.
For the image to go to the left:
You’ll have to remove padding-left: 25%
on this CSS: It’s pushing the image to the right.
@media (min-width: 800px)
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
width: 15%;
padding-left: 25%;
}
You then add this CSS:
@media (min-width: 769px) {
.woocommerce .woocommerce-product-gallery.woocommerce-product-gallery--with-images {
width: 15%;
margin-left: 20px;
margin-right: 10%;
display: inline;
padding-left: 0 !important;
}
.woocommerce div.product .entry-summary h1.product_title.entry-title, .woocommerce div.product .entry-summary p.price {
text-align: left;}
.woocommerce div.product div.summary {
float: unset !important;
display: inline;
}
}
Here’s how it would look: https://share.getcloudapp.com/geubwR8j