Hello,
On my store’s main page down where the Collection List is, the images are displaying without any text. I would like each collection’s name to appear directly underneath its image so customers know which one they are viewing.
Additionally, I’d like the collection title to be positioned in the center. How can I achieve that?
Thank you in advance for your help!
Moeed
August 11, 2025, 4:30pm
2
Hey @Monness
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above </ body> tag
<style>
.collection-list .card__content h3 {
display: block !important;
}
.title-wrapper--no-top-margin {
justify-content: center !important;
}
</style>
RESULT:
If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
Thank you so much! I have adjusted the title but I still need to work on collection names as they’re still not displaying.
Hello @Monness ,
Can you please copy the below code and paste it below the image tag?
{{ collection.title }}
Please check and let me know if this worked for you or not.
AiTrillion:
{{ collection.title }}
Hi, Where exactly do I paste it?
<p> {{collection.title}}</p>
I can’t find where to paste it.. Is it in the theme.liquid as well?
Bang_T
August 12, 2025, 4:35am
9
Hello @Monness
Go to Theme customize > Theme Settings > Custom CSS and paste this code
.collection-list .card__content h3 {
display: block !important;
}
Hi @Monness ,
Go to Online Store > Themes > Actions > Edit Code > base.css Add below code at the bottom of base.css file
.collection-list .card__content h3 {
display: block !important;
}
Looks like I can’t save it for some reasons? Or am I doing it wrong?
Also I just now noticed an empty image below the collections? It wasn’t there yesterday
Worked! Thank you so so much!
Monness
August 13, 2025, 11:05am
14
Do you maybe know why there’s an empty image below the collections? It appeared out of nowhere and I have no idea how to get rid of it
Bang_T
August 14, 2025, 3:50am
15
Hello @Monness
Please start new thread for this issue