How can i make the Typographie of Categories the same as Posts?

Posted in: Newspaper
Post count: 5

Hi,
i want to have the category description have the same typography as my posts. What and where exactly do i need to change it?

Yves

Post count: 22421

Hello,

The category description has no font setting so it can only be targeted with css. Please use this code in the theme panel->custom css box:

.td-category-description p{
font-family: 'Open Sans', arial, sans-serif;
}

Thank you!

Post count: 5

Just in case anyone else needs it. This is obviously for my own Typography but you can change it easily.

.td-category-description p {
font-family: 'Verdana', Geneva, sans-serif !important;
color: black !important;
font-style: normal !important;
font-weight: normal !important;
font-size: 15px !important;
line-height: 26px !important;
}

.td-category-description {
font-family: 'Verdana', Geneva, sans-serif !important;
color: black !important;
font-style: normal !important;
font-weight: normal !important;
font-size: 15px !important;
line-height: 26px !important;
}

.td-category-description h2 { font-weight: bold;}
.td-category-description h3 { font-weight: bold;}
.td-category-description h4 { font-weight: bold;}
.td-category-description h5 { font-weight: bold;}

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.