Hello! I’m wondering if anyone has a code I can use to move all my collection titles & collection descriptions to the center of my pages? At the moment they are all sitting off center (red outline in image). Thanks ![]()
Topic summary
A Shopify store owner using the Sense theme needs help centering collection titles and descriptions, which are currently positioned off-center (outlined in a shared screenshot).
Solution Provided:
Another user offered CSS code to resolve the alignment issue:
- Navigate to Shopify admin → Online Store → Themes
- Click Actions → Edit code on the active theme
- Locate the
theme.liquidfile - Add the following CSS:
.collection-hero.color-background-1 gradient {
text-align: center;
}
- Save changes
The solution targets the collection hero section’s background gradient class to apply center text alignment. A result image was shared showing the expected outcome after implementing the code.
1 Like
Hey @auburnaroma
Kindly share your Store URL and Password if enabled
Hi @auburnaroma ,
Would you mind to share your store URL website? with password if its protected. Thanks!
URL is https://auburnaroma.com
1 Like
Thank you for the information. Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “theme.liquid” folder,
- And Save.
.collection-hero.color-background-1.gradient {
text-align: center;
}
-
Result:
-
I hop it help.

