Blog post header line height

Hi there!

How can I make the line height smaller /space between text in the header smaller for blog headers?

http://glassjacobson2.staging.wpengine.com/blog/

Thanks,
Austin

Hey Austin,

You have this CSS that is causing the issue. Please remove it.

.entry-title a {
    font-size: 28px !important;
}

Below is the proper CSS to use. See https://youtu.be/DlhDFym8lk0

.x-iso-container-posts.cols-2 .entry-title {
    font-size: 200%;
}

Hope that helps.

Thanks so much!

1 Like