Specific font size

Posted in: Newspaper
Post count: 3

Hi there,

We would like to change the font size at a specific field, and we can’t manage to achieve it through the theme panel -> theme fonts.

The font we’d like to change is the one appearing on the category page, the article title on the grid (we are using Grid 3) for category pages.

Please kindly guide us on how to change this font size.

Best regards

Post count: 22421

Hello,

Id you want to change the fonts for the big grids, you can do it from the fonts section and the module mx tab. Here is an example: http://screencast.com/t/GWcIqbiGtl

This will affect all big grids though so if you only want to target a specific big grid, and not affect others it can only be done through css customization. For example on your specific big grid 3 on a category page =we would use this css:

.category .td-grid-style-2 .td-big-thumb .entry-title{
font-size: 24px;
}
.category .td-grid-style-2 .td-medium-thumb .entry-title{
font-size: 24px;
}
.category .td-grid-style-2 .td-small-thumb .entry-title{
font-size: 15px;
}

This code will only affect a big grid 3 on a category page. you can get even more specific than this if you want by using the category id so you will only be affecting the big grid 3 on the specific category page you want.

I hope this helps.

Thank you!

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