A user needed to hide collection titles from a collection list in the Dawn theme. Their initial CSS attempt made the collection images unclickable.
Solutions Provided:
Multiple developers suggested adding CSS to component-card.css:
ZestardTech: Hide titles using .collection__title { display: none; } in base.css
EBOOST: Position overlay approach using absolute positioning with zero opacity on .collection-list__item .card__content and .card--standard > .card__content
PageFly-Richard: Target specific elements with:
.collection-list .card__heading a .icon-wrap { display: none; }
.collection-list .card__heading a { font-size: 0 !important; }
The issue was resolved successfully. The user confirmed one of the solutions worked, though they didn’t specify which approach they implemented. GemPages requested the collection page link for a more precise solution, but this wasn’t needed as the problem was already solved.
Summarized with AI on November 22.
AI used: claude-sonnet-4-5-20250929.
This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/component-card.css->paste below code at the bottom of the file: