Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    You are getting overlapping problem because in:

    .hentry .entry-title {
        font-weight: normal;
        line-height: 24px;
    }

    line-height property is set to 24px.

    Also, I can see CSS for h1 on your site:

    .hentry h1.entry-title {
        color: #333333;
        font-size: 40px;
        margin-bottom: 20px;
    }

    For now, it’s better to add line-height property here.

    Go to the additional CSS section and add this CSS:

    .hentry h1.entry-title {
        line-height: 48px;
    }

    You can increase or decrease 48px according to your requirement.

    Thread Starter knev

    (@knev)

    Thanks Animesh, for providing a fix, now all the headlines on my site are showing up correctly.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Post title is overlapping’ is closed to new replies.