Thank you all for posting a response!
I removed the entire function from the theme folder (see vtxyzzy first post). I wanted to remove the ability to comment in the page content area as well. It worked perfectly. Thank you!
Here is what I removed under'includes/functions/hooks.php':
function lblg_post_info(){
?>
<div class="postinfo">
<span class="postmeta">Posted by <?php the_author(); ?> on "><?php the_time('F jS, Y'); ?> <?php if (!is_single() && !is_page() ){ ?>| <span class="commentlink"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span><?php } edit_post_link(' Edit this entry.', '', ''); ?></span>
<?php if( !is_page() ) { ?>
<span class="postcats">Posted in <?php the_category(', '); ?></span>
<?php } ?>
<?php if( is_single() ){?>
<span class="posttags"><?php the_tags('Tagged as: ',','); ?></span>
<?php }?>
</div>
<?php
}
The blog for this site is under another wordpress name. We redirected it so my blog was not harmed.