Move Footer to far left on Prestige theme

I am looking to move the footer on my site to the far left bottom. I think it might have to be coded, but not sure!

What’s the url of your store

Hi @AFC

Please, share your store URL. Thanks!

https://former-child.com/

Thanks for the info, try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media screen and (min-width: 1140px) {
    .Container .Footer--center .Footer__Inner {
        justify-content: left;
    }
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

Hi @AFC

I hope you are well. You can follow our instructions below:

1/ Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
2/ From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/iDxwa8zBQ4Z-
3/ Copy the code below and paste it there

Here is the code for Step 3:

.Footer__Inner {
    justify-content: left !important;
}

Please let me know if it works. Thank you!

Best,
Daisy - Avada Support Team.

Hello @AFC ,

Here are the steps to apply the necessary changes in your Shopify store:

  1. In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
  2. Locate Asset > base.css and paste the following code at the bottom of the file:
.Footer--center .Footer__Inner {
    justify-content: left !important;
}

Let me know if you need further assistance!

Go to your online store → edit code → theme.css file
and paste this code there in the end

@media screen and (min-width: 1140px) {
    .Footer--center .Footer__Inner {
        justify-content: left !important;
    }
}