I am trying to reduce the font size of the entry titles on my portfolio page. It appears that this font size is controlled by the h2 tag, but I’m having no luck changing it. I tried to change it using the Appearance > Theme Options > Typography tab with no luck, and also tried entering custom CSS under the Layout tab. Am I missing something, or is there another workaround I need to take?
Nevermind, I think I figured it out. I just added this to the CSS box in the Layout tab and it seemed to do the trick:
.entry-title
.page.page-template-template-blog-php .onecol .entry-title,
.page.page-template-template-portfolio-php .onecol .entry-title {
font-size:20px;
}
If someone has a better/cleaner solution, I’d love to hear it!