Debut theme product pic only showing on hover

Topic summary

A Debut theme website displays product images only on hover instead of on page load, affecting product pages and collection thumbnails. The issue persists across multiple devices and networks.

Initial Solution:

  • Add CSS code to theme.scss.css file:
    .product-single__media img {
      height: 100% !important;
    }
    
  • This fixed the main product image display issue.

Remaining Problems:

  • Product gallery images still appear as empty rectangles until mouse movement or scrolling
  • Collection page thumbnails have the same hover-only visibility issue

Additional Fix Applied:

  • Added CSS for collection thumbnails:
    .grid-view-item__image {
      height: 100% !important;
    }
    
  • Successfully resolved collection page thumbnail visibility

Current Status:
The product gallery empty rectangle issue remains unresolved and awaits further assistance.

Summarized with AI on October 29. AI used: claude-sonnet-4-5-20250929.

Hi, I am helping a friend with their Debut theme website. There is some issue with visualising the product picture on the product page - it’s only showing on hover. I welcome any advice! Thank you!

hey @vpaskaleva share the URLs of your website plz

Here: https://www.northumbriancandleworks.co.uk/

Thanks!

hey @vpaskaleva i can’t see the problem in your website but will you plz share the URL of that page

It’s on every product page. here is a screenshot:

but i can’t see the issue i think you network issue that’s why it take some time to load

It’s happening on different devices on different networks


then try this one

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
under the tag before the body ----->
if this code work please do not forget to like and mark it solution

Hi @vpaskaleva , you can follow these steps:

Step 1: Open Online Store → Themes → Edit code

Step 2: Find theme.scss.css file

Step 3: Paste this code at the bottom of the file

.product-single__media img {
    height: 100% !important;
}

Result:

If this helpful, please let us know by giving us a like and marking it as a solution. Thanks

1 Like

Hi, thanks, i think it worked. But then the other images from the product gallery still don’t show on load, you have to move around the mouse or scroll on mobile for them to show. On load it shows like an empty rectangle. Also there is the same issue on any collection page - you have to move around the mouse for the thumbnails to show:

You can use this code:

.grid-view-item__image {
height: 100% !important;
}

1 Like

where should I put it?

You can put it at the bottom of the theme.scss.css file

It worked! Thank you! Can you please help me with the empty rectangles of the product gallery too? And how can I give you a like?