that is an empty extra div .navigation:
<div class="navigation">
<div class="alignleft"></div>
<div class="alignright"></div>
</div>
there will be some php code with it.
that is the one in comments.php – delete it there.
and actually there is another one in comments.php – delete that as well. (it shows as the high empty space before ‘what do you think’.)
ps: you could post page.php or whatever creates the pages – to get a separation before the comments, you probably need to close a div, and re-open another – depending on the html layout.
Thank you for taking the time to look at my code! That took care of one of them right away!
There is one more extra space right above the first comment. I can’t find where to eliminate. Any ideas appreciated.
I want to keep the break above “What do you think?” However, I want to eliminate the one at the bottom under the smilies.
I’d like to add one to pages between content and comments, but I’ve tried adding div’s in several places. Here is the page.php.
<?php get_header(); ?>
<!-- start content -->
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h1 class="title"><?php the_title(); ?></h1>
<div class="entry">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
<p> <?php if(function_exists('wp_email')) { email_link(); } ?> </p>
<?php
if( function_exists( 'pjlCopyrightGet' ) )
echo pjlCopyrightGet();
?>
<div> <?php comments_template(); ?> </div>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div>
<!-- end content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>