Hello,
I want to align the heading along with the text in the footer section to the left. By default, it’s aligned centrally as shown in the pic below.
Store link: https://0bc922.myshopify.com/
A user seeks to left-align footer headings and text in the Dawn theme, which defaults to center alignment.
Solution Provided:
base.css file in the Assets folder.footer-block.grid__item.scroll-trigger.animate--slide-intext-align: left and margin-left: 0pxResolution:
The initial CSS snippet didn’t work. Adding !important to the text-align property successfully resolved the alignment issue. The user confirmed the solution worked.
Hello,
I want to align the heading along with the text in the footer section to the left. By default, it’s aligned centrally as shown in the pic below.
Store link: https://0bc922.myshopify.com/
Hi @randomchikibum ,
Try this one.
.footer-block.grid__item.scroll-trigger.animate--slide-in {
text-align: left;
margin-left: 0px;
}
Result:
I hope it help.
I tried this but its not working
How about this one?
.footer-block.grid__item.scroll-trigger.animate--slide-in {
text-align: left !important;
margin-left: 0px;
}
Thanks!
Welcome. ![]()