How can I change the default blog post font size and font face?
Thanks
Hey marihonaa,
Please try the following in Quick CSS under Enfold->General Styling:
.single-post * {
font-family:verdana !important;
font-size:16px !important;
}
Best regards,
Rikard
This changes all the text in the blog post.
I only want to change the H1, sorry if that wasn’t clear. And I’d like to use a Google font.
Thank you!
..
Hi,
Thanks for the update.
Adjust the code a bit.
.single-post h1 {
font-size: 16px !important;
}
You can set the font in the Enfold > General Styling > Fonts panel.
Best regards,
Ismael
Thanks!
The blog post headings have a different font than the page headings.
I want to change only the font in the blog post heading.
Hi,
Thanks for the update. You can use this css code instead.
#top .fullsize .template-blog .post-title a {
font-size: 22px !important;
font-family: 'Terminal Dosis', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
font-weight: 300;
text-transform: uppercase;
letter-spacing: 1px;
}
Best regards,
Ismael