How can I remove text from collection images on Sunrise theme?

Topic summary

A user working with Shopify’s Sunrise theme wants to remove text labels from their collection list images, keeping only the photos visible.

Solution provided:

  • Add CSS code to the style.css file
  • The code hides collection product titles using display: none !important

Outcome:

  • The CSS solution successfully resolved the issue
  • User confirmed it works as intended

Note: The original post contains reversed/encoded text that appears to include store credentials and URLs, which should be kept private for security reasons.

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

Hello,

I am building a Shopify store.

I am using Theme Sunrise.

Under the Slide Photos on my store, you can see that I have a Collection List.

Each Collection shows photo and text.

I would like to remove text. Only have photo on the Collection List.

Like this (current design VS what I want):

I found other forum threads telling to modify theme.liquid file or others… I already tried some options, always same result.

If someone would help me, I would appreciate.

My Shopify shop is:

https://498b32.myshopify.com/

Password is: 123456789

Thanks

Hi @servtronic
Add the below CSS to style.css it will hide the title.

.collection-list .product-title {
  display: none !important;
}
1 Like

Works perfect !

Thank you

1 Like

Your Welcome @servtronic