Viewing 3 replies - 1 through 3 (of 3 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Try clearing left each post, using CSS.

    It seems one of your elements is styled with float. This is a common problem in floating elements where uncleared elements would overlap each other. In this case, it seems it is your .alignleft.

    To fix this, in your CSS simply replace your .entry with this:

    .entry {
    text-align: justify;
    line-height: 20px;
    padding-top: 8px;
    font-family: Georgia, Times, "Times New Roman", serif;
    font-size: 12px;
    color: #4D4C4C;
    overflow: hidden; // <-- I add this new line
    }

    In case you’re interested with this case, you might want to check here: https://css-tricks.com/the-how-and-why-of-clearing-floats/ ??

    Thread Starter ninjaninja

    (@ninjaninja)

    Thanks so much Xaliber, thats sorted it!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Posts Overlapping’ is closed to new replies.