Category/Tag font

Hello,
What CSS do I need to change the title font for tag and category listings? (This is the big title font that shows up when you select a category or tag link.) In my examples, the words are ‘Just Jilly’ and ‘writing.’
Thanks!

Hi,

Try to change CSS code “font-family” for “h1” tag.

Jech

Can you be more specific? Tried the following code but it didn’t fix it.

div.entry-content {
h1: Lora, serif;
line-height: 165%;
font-size: 12pt;
}

Hi @jillianne,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

body.archive.tag h1.page-title,
body.archive.category h1.page-title {
    font-size: 20px;
}

The above code will just reduce the font size of it but if you want to change the font family of it then use the following CSS code.

body.archive.tag h1.page-title,
body.archive.category h1.page-title {
    font-family: arial;
}

Best Regards,
Movin

Bellissimo! Thanks a mill!

You are most welcome here :slight_smile: