Need to left justify text in footer menu. Dawn V11.

Hi @daved1234 ,

Due to the structure of the theme code, you can see that if you push the text to the left, it will only push like in the picture

Since it can’t interfere with your theme code, this is the way I think makes the most sense if you want to push the text to the left

You can do the following:

Step 1:

Step 2: Find the base.css file or theme.css and copy this code at the end of the file:

.footer__blocks-wrapper .footer-block:nth-child(2) .footer-block__heading,
.footer__blocks-wrapper .footer-block:nth-child(2) .footer-block__details-content{
    text-align:left !important
}

Hope it works @daved1234 !