I edited my index.php page. The first section is my addition and I commented out the old code. It's almost right. The Next Page Previous Page are at the bottom of each page. But -- it ia also under EACH post. I'm sure I just didn't move something but what needs to be done to fix this?
<?php the_content()?>
</div>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('» Next Page »') ?></div>
<div class="alignright"><?php previous_posts_link('« Previous Page «') ?></div>
</div>
<!-- end post -->
<?php endwhile; ?>
<!-- <p id="postnav">
<?php next_posts_link('
Next Page'); ?>
<?php previous_posts_link('Previous Page'); ?>
</p> -->
<?php else : ?>
<div class="notfound">
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that is not here.</p>
</div>
<?php endif; ?>
<?php
get_sidebar();
get_footer();
?>
Thank you