How can I only change the color of the text on the images? (SENSE THEME)

Topic summary

A Shopify store owner using the Sense theme needed to change text color on collection images to white.

Solutions Provided:

Two community members offered CSS-based solutions:

  • Option 1: Add custom CSS code in the theme.liquid file, placed above the </body> tag
  • Option 2: Insert CSS snippet in base.css, theme.css, or custom.css file targeting .collection-list .card-wrapper .card__content .card__heading a with color: #fff;

Outcome:

The issue was successfully resolved. The original poster confirmed one of the solutions worked, marking the thread as solved.

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

Hello,

I would like to change the color of the text on the images to a white color. Is there anyone who can help me with this?

link store: https://muselabel.nl/

Hey @Muselabel

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hi @Muselabel ,

You can follow these steps to make the effect

  1. Open Online Store > Theme > Edit Code

  2. Find and open the base.css (or theme.css, custom.css) file

  3. Paste the code snippet below at the bottom of the file and hit save

.collection-list .card-wrapper .card__content .card__heading a {
    color: #fff;
}

Here is the result

Hope this helps you solve the issue.

Please don’t forget to Like and Mark it as an Accepted Solution if you find this helpful. Thank you!

thank you! It worked

Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.