Hello, i would like to reduce the bottom padding for my footer caption for mobile, so that its closer to the payment icons:
my store is www.antico-abito.com , theme is dawn
Hello, i would like to reduce the bottom padding for my footer caption for mobile, so that its closer to the payment icons:
my store is www.antico-abito.com , theme is dawn
Hi @ads18922,
1. Go to Online Store → Theme → Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.
@media screen and (max-width: 749px) {
.footer__content-bottom {
row-gap: 0 !important;
}
.footer__localization:empty+.footer__column {
padding-top: 0.2rem !important;
}
}
If it works, Mark my comment as Solution.
Thank you!