How to change body font size
-
I would like to change the font size of the body text to make it slightly larger than it is currently. My theme is Sela. Could anyone provide the CSS code I will need to do this.
Thanks
The blog I need help with is: (visible only to logged in users)
-
Howdy notcentralfashion,
Try something like this to boost up the size of the font.
.entry-content { font-size: 14px; } -
Thank you, that’s perfect.
The text in my widget side bar and the date and comment button at the side of each post is still really small. Is there a different code for that?
Thanks again
-
This might do it — take a look.
.entry-meta, .wp-caption-text, .widgets-list-layout-links a, .music-player { font-size: 13px !important; } -
-
One more thing I’ve noticed! At the bottom of a post, there are buttons linking to previous and newer posts, but the font size on those is still really small. Could you provide the code to make that slightly bigger too?
Thank you
-
Missed that pesky navigation. :) Replace the last CSS snippet with this one:
.entry-meta, .wp-caption-text, .widgets-list-layout-links a, .music-player, .nav-previous a, .nav-next a { font-size: 13px !important } -
-
- The topic ‘How to change body font size’ is closed to new replies.