Hi,
Trying to take non-square thumbnails into use for my products with WC 3.5 but there is a small issue with CSS (which is not as visible when square thumbnails are used. See screen capture
The CSS controlling the location seems to be this (from renew.css)
.woocommerce div.product .images figure [data-thumb]:nth-child(4n+1) {
margin-right: 0;
}
.woocommerce div.product .images figure [data-thumb]:nth-child(n+2) {
display: block;
float: left;
width: 22%;
margin: 4% 4% 0 0;
}
Can this be modified to remove the vertical alingment issue. Currently using 150px wide thumbnails, thumbnail width can be adjusted as part of the solution (within reason).