Shopify themes, liquid, logos, and UX
How can I remove the padding/space above social media icons and below store policies?
Thank you in advance.
Hello @revtekautoparts
Thank you for submitting your query to the Shopify community. I’d be happy to assist you. Could you please provide the store URL and password (if it’s password-protected) so I can review and get back to you with an update?
Hello @revtekautoparts
Go to online store ----> themes ----> actions ----> edit code ----> assets ---->section-footer.css
add this code at the end of the file.
@media screen and (max-width: 749px) {
.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet {
margin-bottom: -10rem !important;
}
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hey @revtekautoparts
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
<style>
@media screen and (max-width: 767px) {
.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet {
margin-bottom: 0 !important;
}
.footer-block--newsletter {
margin-top: 0 !important;
}
.footer-block.grid__item {
margin-bottom: 0 !important;
}
ul.footer-block__details-content.list-unstyled {
margin-bottom: 1rem !important;
}
}
</style>
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Discover how to increase customer engagement on your store with articles from Shopify A...
By Jacqui Apr 23, 2025Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025