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

Best Regards,
Tara
A Shopify theme user needed help increasing font sizes in their footer section, which appeared too small.
Solution provided:
base.css fileFor 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.
Hi there,
Can anyone help advise how to change the font of below? It’s on footer and too small. Thanks.

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;
}
Thank you. Can you also advise how can I increase the font of © 2024, veepli sleep to the same size?

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.