How To Change Title Color

Hi,

I would like to change title color of my post and pages.

How do i do it?

Thanks

If you want the same color in all ur title posts open style.css from wordpress admin/appearance/editor and change the color from .entry-title { color: #444;

The colors:
http://www.w3schools.com/colors/colors_names.asp

Hi @jomtrip,

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

You can try changing title colors of posts and pages 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-title a {
    color: #000;
}
h1.entry-title {
    color: #000;
}

Please change the 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