Change font sizes on category pages
- The topic ‘Change font sizes on category pages’ is closed to new replies.
Need help? Check out our Support site, then
Hello!
I would like to make the font sizes smaller on each of the pages for each ‘Category’. I.e, when you navigate to ‘General News’ the title is quite big and so are the titles for each of the posts.
Thank you!
The blog I need help with is: (visible only to logged in users)
Hi – thanks for the message.
The following custom css will give you what you want.
.archive h1 {
font-size: 250%;
}
.archive h2.posttitle {
font-size: 180%;
}
You can tweak the percentages to whatever size you like.
There’s info on using custom css here: https://wordpress.com/support/custom-design/custom-css/
Thanks – Ben
Awesome thank you!!