Decrease the size of copyright text in footer?

Topic summary

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:

  • Navigate to Online Store → Edit Code → app.css file
  • Add CSS targeting the copyright elements with font-size: 12px !important;
  • Specifically targets span.paragraph.footer-paragraph and a.small-print-link.copyright classes

Outcome: The solution successfully resolved the issue. The thread is marked as resolved.

Summarized with AI on October 30. AI used: claude-sonnet-4-5-20250929.

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;
}
1 Like

This worked, thank you so so much!

1 Like