Hello guys! How can I allign the TRENDING NOW text in the center, not in the left. Dawn Theme, you can see the screenshot here
1 Like
Hello There,
Please share your store URL and password.
So that I will check and let you know the exact solution here.
1 Like
Hello There,
- In your Shopify Admin go-to online store > themes > actions > edit code
- Find Asset >base.css and paste this at the bottom of the file:
#shopify-section-template--14359979229324__featured_products DIV.collection.page-width.page-width-desktop DIV.title-wrapper-with-link.title-wrapper--self-padded-tablet-down H2.title {
text-align: center !important;
width: 100%;
}
Screenshot:-Screenshot by Lightshot
Hello There,
- In your Shopify Admin go-to online store > themes > actions > edit code
- Find Asset >base.css and paste this at the bottom of the file:
h2.title {
text-align: center!important;
}
.title-wrapper-with-link.title-wrapper--self-padded-tablet-down {
display: initial;
}
Screenshot:-Screenshot by Lightshot
Hi @SergHei124 ,
You can follow the instruction below:
- Go to Online Store->Theme->Edit code
- Asset->/component-product-grid.css->paste below code at the bottom of the file:
.title-wrapper-with-link .title {
text-align: center !important;
width: 100% !important;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Thank you very much!
1 Like


