This topic has 4 replies, 2 voices, and was last updated 6 years, 8 months ago ago by Rose Tyler
How do I change the font style and font size for the blog post titles on this page?: https://kellidease.com/blog/
I have tried making changes on the Typography page but it doesn’t seem to work.
Hello,
Please add this code in custom.css file of parent theme or in style.css of child theme:
.blog-post .post-title a {
font-size: 18px;
font-style: normal;
}
How to create custom.css you can watch in this tutorial – https://www.youtube.com/watch?v=Qok2zRedRMY.
Regards
That worked, thank you.
Is this theme limited to Google fonts only, or can I purchase a third party font and import it into the theme?
You’re welcome!
I think you can, do this through the child-theme where you should have fonts folder and in it these fonts you bought or downloaded fonts
also in your custom css file you have to import this font according to one of next steps
1.
@font-face {
font-family: myFirstFont;
src: url(fonts/sansation_light.woff);
}
2. if you have this font on any server or just url to it then just add this code at first to import your font (Montserrat for example)
@import url('https://fonts.googleapis.com/css?family=Montserrat');
Feel free to ask if you have any other questions.
Regards
You must be logged in to reply to this topic.Log in/Sign up