Changing the footer code definitely helped, but my sidebar is still not meeting down. Should I be placing the wrapper in the index.php? Or on another php page? Here is my index code
<?php get_header(); ?>
<div id="wrapper">
<div id="container">
<?php if(have_posts()):?><?php while(have_posts()):the_post();?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2>" title="<?php the_title(); ?>"><?php the_title();?></h2>
<div class="entry">
<?php the_content();?>
<p class="postmetadata">
<?php _e('Filed under:'); ?> <?php the_category(', ') ?> <?php _e('by'); ?> <?php the_author(); ?>
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> <?php edit_post_link( 'Edit', ' | ', ''); ?>
</p>
</div>
</div>
<?php endwhile;?>
<div class="navigation">
<?php posts_nav_link('','|',''); ?>
</div>
<?php else:?>
<div class="post">
<h2><?php _e('Not Found');?></h2>
</div>
<?php endif;?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>