Posts Jamming up on each other
-
I’m having a problem with posts jamming up next to each other when there is an image in it. It is almost like WP is not taking into account the size of the image thumbnail before displaying the next post.
Here’s the link to the site I am working on. It is a test site, it is not live:
https://quintessence.eternalsky.us
Here’s the code I am using for index.php
<?php get_header(); ?> <div id="content"> <div id="contentleft"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1> <p><?php the_content(__('Read more'));?><br /> <?php comments_popup_link('Comment', '1 Comment', '% Comments'); ?> <?php edit_post_link('(Edit)', '', ''); ?> </p> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?> <p><?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?></p> </div> <?php include(TEMPLATEPATH."/sidebar.php");?> </div> <!-- The main column ends --> <?php get_footer(); ?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Posts Jamming up on each other’ is closed to new replies.