Hi! I would like to decrease the font size of the copyright text in the footer of my site (©2025 chalk.) so that it is the same size as the other text in the footer. How can I do this? Thanks so much!
Theme: atom
Site URL: chalkdot.co
A user wanted to reduce the copyright text font size in their footer to match other footer text on their Shopify store using the Atom theme.
Solution provided:
font-size: 12px !important;span.paragraph.footer-paragraph and a.small-print-link.copyright classesOutcome: The solution successfully resolved the issue. The thread is marked as resolved.
Hi! I would like to decrease the font size of the copyright text in the footer of my site (©2025 chalk.) so that it is the same size as the other text in the footer. How can I do this? Thanks so much!
Theme: atom
Site URL: chalkdot.co
Go to your online store → edit code → app.css file and paste this code there
span.paragraph.footer-paragraph {
font-size: 12px !important;
}
a.small-print-link.copyright {
font-size: 12px !important;
}
This worked, thank you so so much!