Remove Words From Featured Collection Thumbnail In Venture

Topic summary

A user wants to remove text labels (like “Decoys”) from featured collection thumbnails on their Venture theme homepage to use custom designs instead. They successfully removed it from one collection but need help applying this change to all featured collections.

Proposed Solution:
A CSS code snippet was provided targeting the specific collection section:

  • Targets .collection-card__title elements
  • Sets display: none to hide the text

Current Issue:
The user encountered an error when adding the CSS through the theme customizer.

Alternative Approach:
The helper suggested placing the CSS code directly into the theme’s theme.css or base.css file instead of using the customizer, which may resolve the error.

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

How can I remove the “Decoys” in the blue circle so I can use my own design in featured collections on the home page. I did it with another featured collection on the home page but I want to do it to all of the featured collections I add.

Hi @icon-archery

please add the below css code into your theme customizer.

#shopify-section-5c74a73b-b072-4474-b708-87cf99c13fc7 p.h1.collection-card__title {
    display: none;
}

Thanks

Thanks for responding. I’m getting an error and it says it wont work.

@icon-archery

if the error in the theme customizer then please put that css code into your theme.css OR base.css file.

Thanks

1 Like