I would like to make the body font size smaller across my whole site. How do I do this by editing the code?
Here is my site URL: https://lazyjamie.com/
Thanks in advance!
I would like to make the body font size smaller across my whole site. How do I do this by editing the code?
Here is my site URL: https://lazyjamie.com/
Thanks in advance!
Hey @jamielenore ,
You can change the font-size in the base.css. This is in the Asset folder, under the base.css.
Paste the below code at the bottom of the file (adjust the number 12 dependent on what size font you would like):
body {
font-size: 12px !important;
}
Let me know how you get on!