Have your say in Community Polls: What was/is your greatest motivation to start your own business?

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
9039 2160 2665

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

View solution in original post

Replies 6 (6)

Made4uo-Ribe
Shopify Partner
9039 2160 2665

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
Derkdw
Tourist
4 0 3

The URL is: soundrealm.co

Made4uo-Ribe
Shopify Partner
9039 2160 2665

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
Derkdw
Tourist
4 0 3

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

Made4uo-Ribe
Shopify Partner
9039 2160 2665

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
Derkdw
Tourist
4 0 3

This worked, thank you!