Trying to left align quick links and about us in the footer, Dawn theme - any suggestions?

I’m trying to left align the “Quick Links” and “About Us” titles in the footer of my page so it is lined up with the things underneath it (see attached). Is this possible? Store URL is kennasatodesigns.com - thanks!

@Sato71 - add this css to the very end of your base.css file and check

@media screen and (min-width: 990px){
.footer-block__heading{text-align: left;}
}

Hi @Sato71

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

Online Store ->Theme ->Edit code

Assets ->Base.css

.footer-block.grid__item.footer-block--menu.scroll-trigger.animate--slide-in>.footer-block__heading.inline-richtext {
     text-align: left;
}
.footer-block__brand-info>.footer-block__heading.rte {
    text-align: left;
}

Hope you find my answer helpful!

Best regards,

Richard | PageFly

Hi @Sato71

I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.

Please add this css in your bottom of the base.css file:

.footer .footer-block__heading {text-align: left !important;}

Regards,

San

Hello @Sato71

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

h2.footer-block__heading.inline-richtext {
    text-align: left;
}

Perfect! Thank you!