Grid theme - Collection images not showing

Topic summary

After updating to the latest Grid theme version, collection images on the homepage stopped displaying, appearing as blank spaces instead of the expected product collection thumbnails.

Root Cause:
GemPages support team identified the issue stemmed from theme code affecting the CSS positioning of collection images (specifically position: relative styling on .home-collection-image).

Solution Provided:

  1. Navigate to Online Store → Theme → Edit code
  2. Open the theme.liquid file
  3. Insert custom CSS code before the </body> tag to override the problematic styling

Note: Initial code snippet provided was missing proper <style></style> tags, which was corrected in a follow-up response.

Outcome:
The corrected CSS fix successfully resolved the display issue. GemPages recommended contacting the theme developer for a permanent solution since the problem originated from theme code rather than their platform.

Summarized with AI on November 23. AI used: claude-sonnet-4-5-20250929.

Hi,

I updated to the most current Grid theme and now my Collections images on my homepage are not displaying. Below shows how it used to look and how it looks now. Any assistance would be much appreciated.

Hello @spflab

Can you give me your page URL( with pass if your store password is enabled) so I can check it and maybe give you a solution?

Kind & Best regards,
GemPages Support Team

Hello @shanap26

It’s GemPages support team and glad to support you today.

I’ve checked your image does not show because this code from theme

To hot fix, You can follow these steps:

  1. Go to Online Store->Theme->Edit code

  1. Open your theme.liquid file, paste the below code before
body.template-index #shopify-section-template--15986728599734__fd1a6038-adc3-40cc-a277-c428f1e0c545 .home-collection-image img{
position: relative;
}

But because that code from theme so for the best I recommend you contact to the theme to support

I hope the above is useful to you.

Kind & Best regards,
GemPages Support Team

That didn’t work but thanks for trying. I’ll contact the developer.

Hello @shanap26

So sorry for my code missing tag Please use the below code to hot fix


I hope the above is useful to you.

Kind & Best regards,
GemPages Support Team

1 Like

Thank you!!! It worked.