Remove spacing above and below footer on desktop

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!!

1 Like

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 :-