Hello,
I’m not familiar with the template you’re using, so if you aren’t finding any theme settings to change the font sizes for your paragraphs, there might just not be any.
Is so, you can install and activate a custom css plugin where you can paste in some css. Or optionally, you could create a child theme of your main template, activate the child theme, then edit the style.css file of the active child theme. Either way, paste in this css code to either the style.css file or the custom css plugin that you can find for free. It should give you control over the font size for the paragraphs.
Css is actually pretty easy once you get your feet wet. Here’s that code.
p {
font-size: 1.2rem !important;
}
Note: font-size can be defined using pixels, percentages, em’s, and rem’s. Anything but pixels is ‘dynamic’ which means fonts will auto resize with any text-size plugins and if you have a mobile responsive template. Your template uses rem’s. You can play with the font size. the following examples show examples of how.
p {font-size: 1rem !important;}
p {font-size: 1.2rem !important;}
p {font-size: 1.6rem !important;}
and so on ??
Let me know if it works!
(later edit – my bad, just noticed the theme author replied ?? However, the above code for css does let you target just the paragraphs and nothing else if that’s your desire )
Best Regards,
Danny