Has anyone got suggestions on how to reduce the ‘line spacing’ in the footer menu in Dawn theme when in mobile view? I only have the policies in the menu. Thanks.
Topic summary
A user sought help reducing excessive line spacing in the footer menu on mobile view for Shopify’s Dawn theme, specifically for policy links.
Solution provided:
- Add CSS code to the bottom of the
base.cssfile:.footer__copyright .policies li a { padding: 1px 0; }
Outcome:
- The CSS solution successfully resolved the spacing issue.
- The discussion is marked as resolved.
Hello @djsch add this Css bottom of base.css files
.footer__copyright .policies li a {
padding: 1px 0;
}
This worked. Thank you.
