Can't change the

Hi,

I tried to change the font size of my title on my page (page, post and categories). It works for the category title, with this code :
h2 {
font-size: 30px;
}

But when I want to change the others pages types it doesn’t work.
I tried :
h1 {
font-size: 30px;
}

or

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

or

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

But nothing appen…

Can you help me please.*

Thank you

Hello there,

I hope you are doing well today.

Could you please provide a link to your website so that I can inspect it?

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


/*Headerfont sizes*/
h1, h2, h3, h4, h5, h6 {
    font-size: 40px;
}

Best Regards,
Support

Hi,

Thanks for your quick answer.
I tried your code too but nothing appen.
The link is: http://www.debbiesumner.co.nz/timetable/
And I checked, ‘timetable’ title is well a H1… Don’t anderstand why I can’t manage it with you code.

Thanks

Hello there,

I hope you are doing well today.

Please remove the previous CSS code and try using this instead:


/*Change title font size*/
#blog .blog-post .blog-post-title {
    font-size: 15px;
}

Best Regards,
Support

Hi,

Thanks a lot. But it dosn’t works. I want to change the size of the text header.
I send you a screenshot.

But it’s ok I finally found by myself with this code :

@media only screen and (max-width: 768px) {
#header {
background-attachment: initial !important;
}
#header .bottom-header h1 {
font-size:30px;
}
}

{
#page .flex-caption h1.entry-title{
font-size: 15px;
}
}

Thanks a lot !

Debbie

Hello there,

I am glad that you found a solution that worked for you.
Please feel free to contact us again in the future regarding any other issues.

Best Regards,
Support