Posts overlapping…help!
-
If anyone’s got a moment, I’d really appreciate if you could take a look at my site: https://uncommonman.oxyhost.com
You can see the problem: my two test posts are overlapping wildly. Unfortunately, me being something of a CSS newb, just looking through the code doesn’t seem to help me resolve the issue. Anyone with sharper eyes able to help? These are the parts of the main page template I think might be the issue:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="content"><img src="images/splash.jpg"></div> <div class="post"> <h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2> <div class="main"> <?php the_content('Read more...?'); ?> </div> <div class="meta">Published by <?php the_author() ?>, on <?php the_time('F jS, Y'); ?> <?php _e("at"); ?> <?php the_time('g:i a'); ?>. Filled under: <?php the_category(',') ?> <?php the_tags('Tags: ', ', ', ''); ?> • <?php comments_popup_link('No Comments','1 Comment','% Comments'); ?> <?php edit_post_link(' — (Edit this?)'); ?></div> </div> <?php if ( comments_open() ) comments_template(); ?> <?php endwhile; else: ?> <div class="warning"> <p>Sorry, but you are looking for something that isn't here.</p> </div> <?php endif; ?> <div class="navigation_group"> <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> </div> <?php get_footer(); ?>
So…what am I doing wrong here?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Posts overlapping…help!’ is closed to new replies.