I've found a bug in the Horizon Theme

Hey, just wanted to flag a bug I found in the Horizon theme. Product images aren’t showing up on my Samsung Galaxy Fold 7 at all on the product pages. I’ve checked multiple sites using my Fold 7, and it’s happening across the board, so it definitely seems like a widespread issue.

See Screenshots Below

HI @jeffdublin

Note that that is very specific bug but bug never the less.
And think it is limited to Fold 7 as it looks like width is 749.71px exactly 0.71px more like CSS media breaking point of 749px.
So some CSS rules that are important do not match and cause bugs. I got that width from BrowserStack debuging on unfolded device
And note that image is there but tiny :slight_smile:

To fix, try to add this code in your theme customization, in product page > Product information > Custom CSS setting

  @media screen and (max-width: 750px) {
    .product-information__media {
        grid-column: 1 /-1 !important;
    }
}

In current code that rule is for max 749px . Try it out.

Laza, I notified shopify of the bug they fixed their demos, as in the official shopify demos work fine on a Samsung Z Fold 7 but they still havent fixed the theme. How do I elevate it, I have been onto shopif support twice now about it. They have 2 theme updates which i have installed but it still is not fixed.

If I use your fix will the opfficial patches then confilct though?

Well you can try , pasting in CustomCSS is safe.