Where can i change the font-size, color and weight of the post-contents?

Or is there even a better way doing it via custom css within the customizer?

As allways kind regards and much appreciation for your help.

GT

Hi GT,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS


.entry-content {
    font-size: 15px;
    color: #000;
    font-weight: bold;
}

You can change the CSS properties and color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin