if you put this under your title it will give you all the info
PHP Code:
<div class="date">
<div class="dateleft">
<p><span class="time"><?php the_time('F j, Y'); ?></span> <?php _e("by", 'studiopress'); ?> <?php the_author_posts_link(); ?> <?php edit_post_link(__('(Edit)', 'studiopress'), '', ''); ?> <br /> <?php _e("Filed under", 'studiopress'); ?> <?php the_category(', ') ?></p>
</div>
<div class="dateright">
<p><span class="icomment"><a href="<?php the_permalink(); ?>#respond"><?php comments_number(__('Leave a Comment', 'studiopress'), __('1 Comment', 'studiopress'), __('% Comments'
, 'studiopress')); ?></a></span></p>
</div>
</div>
for just the comments try this
PHP Code:
<div class="date">
<div class="dateleft">
</div>
<div class="dateright">
<p><span class="icomment"><a href="<?php the_permalink(); ?>#respond"><?php comments_number(__('Leave a Comment', 'studiopress'), __('1 Comment', 'studiopress'), __('% Comments'
, 'studiopress')); ?></a></span></p>
</div>
</div>