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.
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__titleelements - Sets
display: noneto 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.
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.
if the error in the theme customizer then please put that css code into your theme.css OR base.css file.
Thanks

