Hello, I’m working in Dawn 2.0 and I can’t figure out how to display the product’s names/titles on the collections page. I’m only able to display the price as of now, which I’d like to keep. Any insight is appreciated!
Topic summary
A user working with Shopify’s Dawn 2.0 theme needed help displaying product names/titles on collection pages. Initially, only product prices were visible.
Resolution:
The issue was resolved independently—product titles were actually present but invisible due to white font color.
Solution implemented:
Custom CSS code was added to the theme.liquid file targeting the .card__heading a selector:
- Changed color to black
- Adjusted font size to 1.6rem
- Both properties marked as
!important
This made the product titles visible and appropriately sized on the collection page.
@Sbaizer - can you please share this collection page link?
I actually figured it out - the titles were in white so I changed the font color and size with this code in theme.liquid file:
.card__heading a {
color: black !important;
font-size: 1.6rem !important;
}