How to change the font type of the title of the posts in my webpage

Hello,

When I click in a post in my webpage, when it opens, I don’t like the font of the title of the posts. I want to change it to helvetica and also I want to change the font size. I have tried the solutions that I read in many posts in this forum, but none of them worked for me.
The following link is the link of one of my posts

I hope you can help me,

Very much thank you in advance.

Hello there,

I hope you are doing well today.

You can use the following CSS code to change the font size and family by going to Appearance > Customize > Additional CSS and pasting it there.

/*Title font*/
h1 {
    font-family: 'Helvetica'!important;
    font-size: 30px!important;
}

Best Regards,
Support

Hello,

Very much thank you for your answer. However the problem remains. That code changes the font type of the title preview of the post, but I want to change the title of the post. The code changes the title of the post in this page

but I want to change the title of the post in this one

Kind Regards,

Reynaldo

To achieve this try using the below custom CSS code.

#page .entry-title {
    font-family: 'Helvetica'!important;
    font-size: 30px!important;
}

Hello Movin,

Very much thank you for your fast reply and solution. Now this code worked perfectly.

Regards,

Reynaldo

You are most welcome here :slight_smile: