How do I control the font size on the Category pages? many thanks
I’d also like to know this one. By the way, I can’t seem to find any category.php in this Theme, can you please point out where we can customize it?
Thank! By the way, this Theme is really clean and very easy to work around with.
You can manually change it by adding a CSS ruleset like this:
.category .entry-summary {
font-size: 16px;
}
You can duplicate the index.php file and rename it category.php, then you can customize category pages.
many thanks – I tried adding it to Custome CSS in Layout and it didn’t seem to work?
The second selector is from the block for which you want to change the font size. I assumed you want to change it for the post content. Alternatively you can just use the .category
selector:
.category {
font-size: 16px;
}