A Shopify store owner encountered an issue where product images displayed correctly on desktop but disappeared on mobile devices in the featured product section.
Root Cause Identified:
A <div class="product__media-badge-container"> wrapper element was interfering with the product media gallery on mobile
This wrapper prevented images from rendering properly on smaller screens
Solution Provided:
Add custom CSS to the section: .product__media-badge-container { width: 100%; }
Alternatively, remove the wrapper element entirely if not needed
Resolution:
The issue was successfully resolved using the CSS fix. The problem stemmed from theme customizations affecting the product media display.
Summarized with AI on October 25.
AI used: claude-sonnet-4-5-20250929.
I hope everyone is doing alright. I have an issue with my feature product section. While on my computer, the image is visible, the moment I check it on mobile, the image disappears. Why? Can I fix it with code or something else?