hi i want to centralise the collections header text on both desktop and mobile
see attached
URL golazocasesuk.myshopify.com
theme: trade
A user seeks to center-align the collections header text on both desktop and mobile versions of their Shopify store. They provided a screenshot showing the current layout.
Solution provided:
base.css file.collection-list-wrapper .collection-list-title {
text-align: center;
margin: 0 auto;
}
The theme in use is Trade. The discussion appears resolved with a straightforward CSS customization.
hi i want to centralise the collections header text on both desktop and mobile
see attached
URL golazocasesuk.myshopify.com
theme: trade
Hello @golazocases ,
Follow these steps:
Go to Online Store → Theme → Edit code
Open your base.css file and paste the following code at the bottom:
.collection-list-wrapper .collection-list-title {
text-align: center;
margin: 0 auto;
}
Thanks