Font Below Posts

Posted in: Newspaper
Post count: 6

I’m having a problem with the font sizes below the posts. I have 3 related articles with images but the font below the images is compressed and unreadable. How would I change that?

For example check out this post http://www.fivevictory.com/top-15-nhl-player-rankings/ below the article. Thanks

Post count: 22421

Hello,

It seems you have a negative line spacing on your h4 titles. You can use this custom CSS to change it back to 0 and it should display fine now: http://screencast.com/t/RaKYxXVTg9

.jp-relatedposts-post-title{
letter-spacing:0;
}

Thank you!

Post count: 6

Thank you!

Post count: 6

Is there a way to change the line spacing on other titles without using CSS? If not could you tell me the CSS for the side titles like Most Commented and Hot News. I’m not too familiar with CSS.

Post count: 22421

Hello,
There is no option in the theme panel for that. The letter spacing maybe comes from the font you use for these titles. You can reset the letter spacing with CSS for each title or for all titles at once. It seamns all your h4 titles have this option.

Try this custom CSS for all the titles:

.td_block_wrap h4 {
letter-spacing:0px!important;
}

Or if you want to target a specific block, you have to get the class of the block with your browser inspector:
http://screencast.com/t/6rr8yJTYDSCd

Thank you!

Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic.