Left-Align footer in Dawn theme & Decrease Column Margins

Hello,

I’d like to left align all of the content in my footer and decrease the margin/padding around the columns to make them closer.

PW: fullridge2

Current:

What I’m looking for:

Thanks in advance :slightly_smiling_face:

1 Like

HI @FRA94

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

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:

.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet.scroll-trigger.animate--slide-in {
    width: 60%;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Thank you for the tip, although it did not work at the end of my base.css file.

1 Like

try to add !important then.

.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet.scroll-trigger.animate--slide-in {
    width: 60% !important; 
}

And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

@FRA94 Please follow below steps to left align all of the content in footer and decrease the spacings between the columns to make them closer. Let me know whether it is helpful for you.

  1. From admin go to “Online Store” → “Themes”.
  2. Click “Customize” button from the current theme.
  3. Click “Footer” section and paste the below code in the Custom CSS field like in the attached screenshot.
.footer__content-top {
  max-width: 100%;
}
.footer__content-top .footer-block {
  max-width: 15%;
}

  1. Then the final result will be like,

Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.