How to change size font of specific wods on the footer?

Topic summary

A user seeks to reduce the font size of “Privacy policy” and “Terms of service” links in their Shopify store footer.

Two CSS solutions were provided:

  1. Via theme.liquid file:

    • Navigate to Shopify Admin → Online Store → Themes → Edit code
    • Locate theme.liquid and insert custom CSS in <style> tags above the </head> tag
    • Target the footer links with appropriate selectors
  2. Via main CSS file:

    • Access Online Store → Themes → Assets folder
    • Open main.css (or base.css/style.css/theme.css)
    • Add CSS rule at the bottom: .footer__links.fs-body-100 li { font-size: 1.2rem; }

Outcome: The user confirmed the solution worked successfully. Both responses included code snippets and result screenshots demonstrating the font size reduction.

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

Hy guys,

I am trying to change the font size of the words (Privacy policy and Terms of service) how can I reduce the size?

Thank you!

URL:

https://toroeatstreats.com/

2 Likes

Hi @abailea077 ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:


Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like

Hi @abailea077

Check this one.

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

.footer__links.fs-body-100 li {
    font-size: 1.2rem;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

This is good, thank you very much!