make image in footer left aligned

hello, i want to make the image in my footer left aligned, as it is currently centre aligned:

website is www.antico-abito.com , password is chasha , theme is dawn

1 Like

you should be able to do the setup in your theme customize setting or you make use of custom code

Hi @ads18922

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

@media (max-width: 768px) {
.footer-block__details-content.footer-block-image.center {
    justify-content: flex-start !important;
}
}

Result

Best,

DaisyVo

Hello @ads18922 ,

Regarding your query to display the footer in left aligned, please follow the following instructions.
1.Navigate to the online store > Online Store > Themes > Actions > Edit code.

2.Open base.css file and add the given code in the style section:

@media screen and (max-width: 749px) {
.footer-block__details-content .footer-block-image.center{
justify-content: flex-start !important;}
}

3.Save the changes.