hello, a while back i managed to switch my product price and text from left aligned to centre. I want to change it back to left align now, but cannot find the code i put in originally. My theme is dawn, website url is www.alexandrawestbrook , password is liavee
Topic summary
A user wanted to revert their product title and price alignment from center to left on their Dawn theme store but couldn’t locate the original CSS code they had added.
Solution provided:
- Navigate to Online Store → Theme → Edit Code
- Locate base.css/theme.css/style.css
- Add CSS targeting
.product__titleand.price.price--largewithtext-align: left !important;
Resolution:
The suggested code initially didn’t work for the user. However, they ultimately resolved the issue by finding and removing their original custom CSS code that had changed the alignment to center in the first place.
Hi @ads18922 ,
Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css file Add the provided code at the end of the file.
.product__title, .price.price--large {
text-align: left !important;
}
hello, this didnt work for me
yes, i found the code which i originally put in a while back and took it out so it works now


