Font and font size of blog title on home page
-
Hi,
I have the CSS feature and would like to change the font and font size on my blog title “the radicchio rhino”
What code shall I use to do this?
Thanks!
MikeThe blog I need help with is: (visible only to logged in users)
-
Hi there,
You can change the font size with this css;
.site-title{ font-size: 45px; }You can change “45” with other number you want.
-
Thank You so much, that worked! Now is there a code I can use to make the font different with a different color?
Mike -
Also, the subtitle of my blog “eating for peace” -Is there a code I could use to edit the size and font of that one as well?
-
You are very welcome :)
Thank You so much, that worked! Now is there a code I can use to make the font different with a different color?
.site-title a{ color: #000; }Change #000 with other color you want in hex code. http://www.color-hex.com/
Also, the subtitle of my blog “eating for peace” -Is there a code I could use to edit the size and font of that one as well?
.site-description{ font-size: 22px; font-family: Rockwell,Courier Bold,Courier,Georgia,Times,Times New Roman,serif !important; }Change “22” with other number you want for the font size.
Change “Rockwell,Courier Bold,Courier,Georgia,Times,Times New Roman,serif” with font family you want. Since Penscratch theme doesn’t have option to change site-description font particularly we should add “!important” and I suggest you to find web safe font family here http://www.cssfontstack.com/ -
Huge help! Thank you!
Now, if I want to change the font size, family, and size for each blog post, is there a code? -
Penscratch use responsive typography setting, we will use media query to change font size. The code will be like this;
@media screen and (min-width: 50em){ .entry-title{ font-size: 1.8em; font-family: Rockwell,Courier Bold,Courier,Georgia,Times,Times New Roman,serif; } }You can use “em” or “px” for font size.
You also can use font from Typekit under Customize option – Fonts – Body text https://cloudup.com/cWQy3QBDwM5
-
- The topic ‘Font and font size of blog title on home page’ is closed to new replies.