How do i change the font size of my blog?
-
The font size for my blog page is too big. How can I make it smaller?
Thanks!
The blog I need help with is: (visible only to logged in users)
-
You can do that under Appearance -> Customize -> Fonts as shown here:
Just use the numbers above the font names (2 and -1 in that example) to adjust the font size!
-
When I do that it is not reflected in the blog, is there a different way to customize specific body copy?
-
When I do that it is not reflected in the blog, is there a different way to customize specific body copy?
-
Yep! We can target the body text with a CSS rule. It looks like you may have already started to set that up. You can change the body text font size with the following CSS:
.entry-content p { font-size: 75%; }Just adjust the percentage. Alternatively, you could use the following:
.entry-content p { font-size: 0.8em; }1 em would be the default value. You can adjust up or down from there!
-
-
- The topic ‘How do i change the font size of my blog?’ is closed to new replies.