Urgent help! Unable to view product images on iPhone/ios. It is visible on android

it’s been 3 days and we are unable to view The products thumbnails on ios/iPhone/iPad. Everything is visible on android. The website is live and there is no solution that we can find or that Shopify is given! PLEASE HELP!

Hi @onsethomes

You should find this line of CSS in your CSS file assets/component-card.css

.card .media {
  width: 100%;
}

then add in the height: 100% to become like this

.card .media {
  width: 100%;
  height:100%;
}

Then it will work

@Be_Steven Thank You so much for this solution.