i am trying to center the titles in the collection lists
how can i center it please?
A user seeks help centering collection list titles on their Shopify store, providing a screenshot and store URL showing left-aligned titles.
Two solutions were offered:
CSS approach: Add custom CSS to theme.css or base.css targeting the title wrapper class with justify-content: center and display: flex
theme.liquid approach: Insert custom code (likely CSS within <style> tags) directly into the theme.liquid file just above the </head> tag
Both solutions target the same visual outcome of centering collection titles. The original poster confirmed the issue was resolved with a thank you, though they didn’t specify which solution they implemented.
Status: Resolved
i am trying to center the titles in the collection lists
how can i center it please?
Hi @Artez ,
.title-wrapper-with-link.title-wrapper--self-padded-mobile.title-wrapper--no-top-margin {
justify-content: center;
display: flex;
}
Thanks!
Hi @Artez ,
I have written custom code to get this done. To do this you will have to edit theme.liquid.
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the below code just above
If you require further help to optimize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!
Best Regards,
Makka
Thank you very much.