Change title font size

How do I change the font size of my title on my page? Kimballandkedzie.com

Hi @kimballandkedzie,

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

article .entry-title {
    font-size: 20px;
}

Please change the font size in the above code to whatever you want to set.

Best Regards,
Movin

Sorry, I don’t think I was clear on that question. That changes the font of the title for each post, but I wanted to change the font size of the header font (logo). Please let me know, thanks! Sorry for the confusion.

Tuyet

You can change the font size of the header font (logo) by using the below CSS code.

a.navbar-brand {
    font-size: 25px;
}