The grid is showing well on Chrome, FF, IE
But on a Safari browser the ‘Quickadd’ buttons are not under the image.
I did not changed the code of the Fragment ‘card-product.liquid’
The grid is showing well on Chrome, FF, IE
But on a Safari browser the ‘Quickadd’ buttons are not under the image.
I did not changed the code of the Fragment ‘card-product.liquid’
Would you share the store URL with password in case it is not public?
To test i have created a temporary shop, i just added 2 product under 1 collection. I did not changed any code. The theme is Dawn
https://sumosolutions.myshopify.com/collections/all
password of the shop is: skiack
The problem is only on a Ipad Air with Chrome, safari and google browser.
On other Operating systems I can not reproduce this problem.
Oh boy that is hard to test for. What I would do is add some absolute value to the height of the element. For example like this:
.card:not(.ratio)>.card__content {
grid-template-rows: max-content minmax(0,1fr) max-content auto;
height: 20vh;
}
Then you can check on the ipad again - if it looks good you could figure out absolute values for each of the viewport sizes. I’ll help you with that but first we have to find out if that’s the fix.
You will find the code in online shop → theme-> edit code->component-card.css
It looks like this right now and should be like my above code afterwards:
.card:not(.ratio)>.card__content {
grid-template-rows: max-content minmax(0,1fr) max-content auto;
}
Gruss…Mark