Hi there,
There’s way too much spacing above and below my footer on desktop (mobile is fine)
Could you please help me get rid of it?
URL: https://vaneijkmode-arnhem.nl/
Thank you so much!!
A user is experiencing excessive spacing above and below their footer on desktop (mobile displays correctly) and seeks a solution.
Solutions Provided:
Two developers offered CSS-based fixes:
--footer-padding-block: 0rem and --footer-part-gap: 2rem for the .footer class.footer__wrapper gap to 5px and .footer__aside.empty\:hidden gap to 15pxBoth solutions involve editing the theme.css file through the Shopify admin panel (Online Store → Themes → Edit Code). Screenshots demonstrate the reduced spacing after applying the fixes.
Status: Multiple solutions provided; awaiting user confirmation on which approach resolved the issue.
Hi there,
There’s way too much spacing above and below my footer on desktop (mobile is fine)
Could you please help me get rid of it?
URL: https://vaneijkmode-arnhem.nl/
Thank you so much!!
Hello @ultimatebeanzmo
Go to online store ----> themes ----> actions ----> edit code ----> theme.css
add this code at the end of the file and save.
@media screen and (min-width: 700px) {
.footer {
--footer-padding-block: 0rem;
--footer-part-gap: 2rem;
}
}
Result
If this was helpful, hit the like button and accept the solution.
Thanks
Hello @ultimatebeanzmo
Go to Online Store, then Theme, and select Edit Code.
Search for assets/theme.css Add the provided code at the end of the file.
.footer__wrapper {
gap: 5px;
}
.footer__aside.empty\:hidden {
gap: 15px;
}
Output :-