• hi,

    sorry i’m pretty amateurish when it comes to this stuff, so please bear with me!

    i have a site where one new post on my main page does not actually begin where the post above it ends. if you click the link and look about 1/4 of the way down the page, you will see what i mean.

    i’m sure it’s a simple tweak in my stylesheet, but have no clue what.

    any thoughts?

    thanks much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • in style.css of your theme (somewhere down line 257), try and add a ‘float:left;’ to:

    .excerpt
    {
      margin-bottom:32px;
    float:left;
    }

    see if it has any other effects on other parts of your blog.
    good luck 😉

    Hi jlearmonth,

    In Firefox I can see that both posts are wrapped around the one image of the top post. In IE7 I do not see the image at all.

    Try adding the clear both line in your index.php file in your theme:

    <div class="entry">
    <?php the_content('.. read more ..'); ?>
    </div>
    <div style="clear:both;"></div>
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘New post not displaying after old post’ is closed to new replies.