Remove padding from social media icons and policies in the footer

Hi everyone!

I’m trying to remove the padding from the social media icons and the policies in the footer, but I can’t figure out how.

I’m trying to go from this:

To this:

Any help is appreciated!

1 Like

Hi @Derkdw

Would you mind to share your Store URL website? with password if its unpublish. Thanks!

The URL is: soundrealm.co

1 Like

Thanks for the info, try 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__content-top.page-width {
    padding-bottom: 0px;
}
.footer__content-bottom {
    padding-top: 0px;
}
1 Like

Hi, this does change the social media icons, but it doesn’t change the policies.

1 Like

Oh, I see would you mind to replace with this code.

.footer__content-top.page-width {
    padding-bottom: 0px !important;
}
.footer__content-bottom {
    padding-top: 0px !important;
}

And Save. Its the same code but i just add the important. Thanks!

This worked, thank you!