How can I reduce footer padding on my website?

I have tried for days and hours and still am unable to reduce the padding in the footer section. See highlighted area in pic.

www.shopjordanmarie.com

1 Like

Hi @amyjones33 ,

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:
  4. And Save.
.sf-footer__accordion.flex.flex-wrap.lg\:flex-nowrap.-mx-4.lg\:-mx-8.acc-initialized * {
    padding-top: 0px;
    padding-bottom: 0px;
}

Result:

I hope it help.

Thank you for your response but that did not work. I added it to my theme.css file at the bottom and the padding is still there. :disappointed_face:

I even added the !important and it didn’t work.

Hello @amyjones33

Inside Shopify Admin, you can go to Edit theme code, open file main.css and add this code to the bottom

.sf-footer__block {
    padding-bottom: 40px !important;
    padding-top: 40px !important;
}

The result

Hope it helps!

My template has a advanced section in the theme settings where I can add custom css. I added it there and it worked. Thanks so much!!!

1 Like

You are welcome.