Remove padding from social media icons and policies in the footer

Solved
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
4092 938 1145

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!

Please don't forget to 

Like

 and 

Mark Solution 

to the post that helped you. Thanks!
Sip, savor, and support – your

Coffee Tip

 helps us keep coding magic.❤️❤️❤️
Need a knowledgeable developer? Come and visit us at

Made4uo.com


View solution in original post

Replies 6 (6)
Made4uo-Ribe
Shopify Partner
4092 938 1145

Hi @Derkdw 

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

Please don't forget to 

Like

 and 

Mark Solution 

to the post that helped you. Thanks!
Sip, savor, and support – your

Coffee Tip

 helps us keep coding magic.❤️❤️❤️
Need a knowledgeable developer? Come and visit us at

Made4uo.com


Derkdw
Tourist
4 0 3

The URL is: soundrealm.co

Made4uo-Ribe
Shopify Partner
4092 938 1145

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
Please don't forget to 

Like

 and 

Mark Solution 

to the post that helped you. Thanks!
Sip, savor, and support – your

Coffee Tip

 helps us keep coding magic.❤️❤️❤️
Need a knowledgeable developer? Come and visit us at

Made4uo.com


Derkdw
Tourist
4 0 3

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

Made4uo-Ribe
Shopify Partner
4092 938 1145

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!

Please don't forget to 

Like

 and 

Mark Solution 

to the post that helped you. Thanks!
Sip, savor, and support – your

Coffee Tip

 helps us keep coding magic.❤️❤️❤️
Need a knowledgeable developer? Come and visit us at

Made4uo.com


Derkdw
Tourist
4 0 3

This worked, thank you!