smaller body text font
- The topic ‘smaller body text font’ is closed to new replies.
Need help? Check out our Support site, then
I’m trying to change the font size in my body text but doesn’t seem to work. Any help?
The blog I need help with is: http://www.trendytripblog.wordpress.com
Thanks!!
The blog I need help with is: (visible only to logged in users)
Hi @inestrabucco:
You would need the Custom Design upgrade in order to be able to add custom CSS to the theme. You could then change the font size with the following CSS (24px font-size is the default value):
@media screen and (min-width: 1023px) {
.entry-content p,
.entry-summary p,
.entry-content ul,
.entry-content ol {
font-size: 20px;
font-size: 1.25rem;
}
}
Best, Ellen