Hello @foodopi,
Hope you are having a great day and thanks for contacting us!
Please go to WP Admin > Appearance > Customize > Additional CSS and inside that box, add the following code:
.single p {
font-size: 20px;
}
And change the 20px number to any size you’d like to have.
Please, let me know if you need any further assistance.
Kind regards,
Diego
Thanks it really helped,
also wanted to know how to justify the paragraph.
Regards,
Kalyon Subbarao
Hi @foodopi,
Try using this code:
.single p {
font-size: 20px;
text-align: justify;
}
Let me know.
Kind regards,
Diego
Hi Diego! I was going to use the above code to make the font larger, but I only want the font larger on my posts…not on the pages or the sidebar or anywhere else. Is that possible?
Hi @foodopi,
In order to target just to the body of the post, use this:
.single .entry p {
font-size: 20px;
text-align: justify;
}
Kind regards,
Diego