This didn’t really work for Pixeled. So I figured this out after some playing around… Wrapped a COMMENT div around the PHP function call, also added CLEARED div because that’s the way it renders on posts. Hope this helps
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="topPost"> <h2 class="topTitle"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<div class="topContent"><?php the_content('(continue reading...)'); ?></div><strong>
<div class="cleared"></div>
<div id="comment"><div class="cleared"></div>
<?php comments_template(); ?>
</div></strong>
</div> <!-- Closes topPost -->
<?php endwhile; ?>
<?php else : ?>