Re: Remove padding from social media icons and policies in the footer

Solved

Remove padding from social media icons and policies in the footer

Derkdw
Tourist
4 0 3

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:

Footer.png

 

To this:

Footer edit.png

 

Any help is appreciated!

 

Accepted Solution (1)
Made4uo-Ribe
Shopify Partner
8221 1973 2413

This is an accepted solution.

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!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Replies 6 (6)

Made4uo-Ribe
Shopify Partner
8221 1973 2413

Hi @Derkdw 

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

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
Derkdw
Tourist
4 0 3

The URL is: soundrealm.co

Made4uo-Ribe
Shopify Partner
8221 1973 2413

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;
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1697408968150.png
If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
Derkdw
Tourist
4 0 3

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

Made4uo-Ribe
Shopify Partner
8221 1973 2413

This is an accepted solution.

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!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
Derkdw
Tourist
4 0 3

This worked, thank you!