how to change font color for Post Titles

I am working on an unfinished site, so I cant post links yet, but I am having a hard time figuring out how to change the font style and or color for my Post Titles. Can someone help me figure this out??

Hi @niamhb,

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

#main .post .entry-title {
    font-style: normal;
    color: #000;
}

Please change the font style and color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/cssref/pr_font_font-style.asp

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