Hello!
I’m looking to make the text in the footer closer together like the reference I provided.
A user seeks to remove a dividing line in the Dawn theme footer that separates the company name from clickable text.
Solution provided:
.footer__content-bottomInitial attempt:
Final solution:
.footer__content-bottom { padding-top: 0px !important; border: none !important; }
Outcome: The solution successfully resolved the issue, with the user confirming it worked.
Hello!
I’m looking to make the text in the footer closer together like the reference I provided.
Hi @alixzander ,
Could you share your store URL?
Hi @Dan-From-Ryviu !
Go to Online Store > Themes > Edit Code > Assets > base.css, add those CSS code at the bottom of file, click Save button
.footer__content-top { padding-bottom: 0px !important; }
.footer__content-bottom { padding-top: 0px !important; }
.footer__copyrig { margin-top: .5rem !important; }
It allowed it to move down but it’s still showing a line that divides it. Anything else I can add to get rid of the line?
Please use edit this code
.footer__content-bottom { padding-top: 0px !important; }
To this
.footer__content-bottom { padding-top: 0px !important; border: none !important; }
Thank you!! This helped me a ton :))