Decrease the size of copyright text in footer?

Solved

Decrease the size of copyright text in footer?

chalkdotco
Tourist
27 0 7

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

Accepted Solution (1)

Asad-Mahmood
Shopify Partner
390 67 76

This is an accepted solution.

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;
}
If my solution has been helpful, you can consider supporting me via Buy Me a Coffee.
Hire me: asadmahmood8470@gmail.com
WhatsApp
Fiver




View solution in original post

Replies 2 (2)

Asad-Mahmood
Shopify Partner
390 67 76

This is an accepted solution.

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;
}
If my solution has been helpful, you can consider supporting me via Buy Me a Coffee.
Hire me: asadmahmood8470@gmail.com
WhatsApp
Fiver




chalkdotco
Tourist
27 0 7

This worked, thank you so so much!