N/m, I fixed it. In case anyone else if having the same problem, here is the code for the page template:
<?php get_header();?>
<div id="contentwrap"><div id="content2">
<div id="contentpost">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post_single" id="post-<?php the_ID(); ?>">
<div class="postdate_single"><?php the_time('m.d.Y') ?>
</div>
<div class="posttitle_single"><?php the_title(); ?>
</div>
<div>
<?php edit_post_link(); ?>
</div>
<div align="center" class="entrywhole">
<div align="left" class="entry">
<?php the_content('Read more »'); ?>
</div>
</div>
</div>
<div style="clear:both;">
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
<div id="navigationwrap">
</div>
</div>
<?php get_sidebar();?>
</div>
</div>
<?php get_footer();?>
just needed to add the contentwrap at the top and close it out.