How to change fonts of post title & sidebar widget title

Hi,
I’d like to change fonts of post title & sidebar widget title.

Can you please help me with;
1.font type (e.g. sans-serif)
2.font size
3.font color

Hi @ishjp,

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 the latest version of Sparkling theme on the below path.

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

.entry-header .entry-title {
    font-family: sans-serif;
    font-size: 26px;
    color: #000;
}
#secondary .widget h3.widget-title {
    color: #000;
    font-size: 15px;
    font-family: sans-serif;
}

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

Thank you so much, Movin!

You are most welcome here :slight_smile: