Hello,
I’m trying to figure out to decrease the space between the email signup box and copyright mark in my footer so they’re closer together, see screencap below for reference. I’d also like to increase the line weight of the thin divider line thats in between them.
Thank you in advance.
password: uviwho
Hi @catbellystudios , you can try to add this css
Online store > theme > customize > setting > custom css
.footer__content-top {
padding-bottom: 2rem;
}
.footer__content-bottom {
border-top: solid 0.3rem rgba(var(--color-foreground), .08);
}
Hope this helps, and if you need further support, we will be happy to answer any of your questions.
Hi @catbellystudios ,
Insert this CSS into the CSS file in your theme:
.footer .footer__content-top {
padding-bottom: 2rem !important;
}
.footer .footer__content-bottom {
border-width: 3px !important;
}
Here is the result:
Good luck @catbellystudios