How to Change Font, Style, Adjust Size of Category Title and Description?

Posted in: Newspaper
Post count: 28

Hi tagDiv,

I am using the Coffee Blog demo on my site. I want to change the font size and font style of my category title and description. I don’t want the title in uppercase format. I also want to adjust the font size of category description and use other fonts. I can’t find the settings in Theme Panel -> Theme Fonts.

Screenshot: http://prntscr.com/izchro

Thanks!

Post count: 23312

Hello Jericho,

You should use a bit of CSS code if you want to change the font from this section. Try to use the code below and place it in Theme panel -> Custom CSS area.

The code is ->

.td-category-description p {
font-size:20px;
font-style: normal;
}

For page title, you should change from Theme panel, Theme Fonts from here -> https://www.screencast.com/t/viJFU4PW7

Thanks for the message!

Post count: 28

Hi Catalin,

Seems like the text-transform option in this section is not working. I tried to change it to Capitalized, Lowercase, and Normal text but nothing happens.

http://prntscr.com/izq4jk

Thanks!

Post count: 22421

Hello,

I have just tested this option on my end but it works as expected. You could have another css affecting your titles that prevents the theme css from applying. Please provide a link to your site so we can inspect it.

Thank you!

Post count: 28

Hi Bogdan,

Here’s the site: https://pinoycollection.com/

Thanks!

Post count: 1341

Try this code (place it in Theme panel -> Custom CSS area):

.td-category-header .td-page-title{
text-transform:none;
}

All your category title will show as is.

Post count: 28

Thanks, Edward!

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