Hello, i would like to move my footer caption and payment icons higher on desktop, as the gap is currently too big:
my store is www.antico-abito.com , theme is dawn
Hello, i would like to move my footer caption and payment icons higher on desktop, as the gap is currently too big:
my store is www.antico-abito.com , theme is dawn
since you are new here, you can ask expert who help you to do it to change or have you lost contact with them
Hi @ads18922 ,
Go to Online Store > Themes > Actions > Edit Code > base.css Add below code at the bottom of base.css file
@media (min-width: 768px) {
.footer__content-top.page-width {
padding-bottom: 0 !important;
}
.footer__content-bottom {
padding-top: 0 !important;
}
}
Hi @ads18922 ,
Go to Online Store → Themes → Edit code → Assets → base.css
Add this code at the bottom
.footer .footer__list-social {
margin-bottom: 5px; /* reduce space below social icons, adjust as required */
}
.footer .footer__content-bottom {
margin-top: 5px; /* reduce space above payment icons, adjust as required */
}
Save and refresh preview
Here is the result
Thanks
Manoj