How can I change the font size in my footer?

Topic summary

A Shopify theme user needed help increasing font sizes in their footer section, which appeared too small.

Solution provided:

  • Navigate to Online Store → Themes → Edit code
  • Locate the base.css file
  • Add CSS code at the bottom of the page:

For footer policy links:

footer.policies li a {
  font-size: 14px;
}

For copyright text:

footer.copyright__content {
  font-size: 14px;
}

Outcome: The solution successfully resolved both issues. The user confirmed the changes worked perfectly.

Summarized with AI on November 11. AI used: claude-sonnet-4-5-20250929.

Hi there,

Can anyone help advise how to change the font of below? It’s on footer and too small. Thanks.

Tara123_0-1709200691839.png

Best Regards,

Tara

Hi @Tara123 ,

If you want to increase the font size in the footer, follow these steps:

Step 1: Navigate to Online Store → Themes → Edit code. Search for the file base.css, then go to the bottom of the page and paste the following code.

.footer .policies li a {
    font-size: 14px;
}
1 Like

Thank you. Can you also advise how can I increase the font of © 2024, veepli sleep to the same size?

Tara123_0-1709272701345.png

You’re welcome.

Just follow these simple steps again:

Step 1: Navigate to Online Store → Themes → Edit code. Search for the file base.css, then go to the bottom of the page and paste the following code.

.footer .copyright__content {
    font-size: 14px;
}

Thank you so much! It works perfect.