Yeah, sometimes it happens when you have no access to the source code…
Try this instead:
.product-thumbnail {
min-height: 100%;
}
Goal: make “Add to cart” buttons align at the same height across product cards in Shopify’s Retina theme.
Proposed fixes:
New issue: when switching product cards from Grid to Slideshow, alignment broke. A first attempt using .product-thumbnail height:100% caused layout problems. Changing to .product-thumbnail min-height:100% fixed the Slideshow alignment.
Outcome: resolved. Use the flex-based CSS for consistent alignment in Grid, and ensure .product-thumbnail has min-height:100% for Slideshow cards. Code can be added via Theme Settings > Custom CSS (or section-level Custom CSS), alternatively via theme.liquid if needed.
Yeah, sometimes it happens when you have no access to the source code…
Try this instead:
.product-thumbnail {
min-height: 100%;
}