Hello,
Regarding the Image Size and content alignment, you can check out our Theme Documentation guide in this regard: https://xtemos.com/docs-topic/image-size-and-content-alignment-in-a-product-grid/
If the guidelines on the above Documentation doesn’t work out for you then you can try out an alternative solution in this regard.
You can firstly go to Dashboard > Appearance > Customize > WooCommerce > Product Images > there you can remove the size defined for the Thumbnail width: https://snipboard.io/8mif2E.jpg
After that you can try out the following Custom CSS on your Site to adjust the Product Images in a precise manner:
.product-grid-item :is(.product-image-link,.hover-img) img {
object-fit: contain !important;
height: 15em !important;
}
In the above CSS, you can write your own choice of value for the height property.
Location to paste Custom CSS, go to Dashboard >> Theme Settings >> Custom CSS >> Global CSS section >> paste the CSS.
Hope this helps !
Best Regards