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:
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:
Via theme.liquid file:
<style> tags above the </head> tagVia main CSS file:
.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.
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:
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 ![]()
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!