Hi Kafkaesqui, thanks for all your help. I tried that but there is no code like that in my index.php file. I looked for ‘categories’ or ‘archives’ in this file and they are not there either. I also checked out that link and it recommends things that don’t seem to appear on my index.php file. I copied the whole file below so you could see it for yourself. If you have time, maybeyou could look over it. Thanks
<?php get_header(); ?>
<div id=”middle”>
<div id=”content”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<div class=”entry”>
<p><?php the_time(‘F jS, Y’) ?> by <?php the_author() ?></p>
<?php the_content(‘Read the rest of this entry »’); ?>
</div>
<ul class=”post-data”>
<li class=”comments”>
<?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?>
<li class=”posted”>
Posted in <?php the_category(‘, ‘) ?> <?php edit_post_link(‘Edit’,”,”); ?>
</div>
<?php comments_template(); ?>
<?php endwhile; ?>
<p align=”center”><?php next_posts_link(‘« Previous Entries’) ?> <?php previous_posts_link(‘Next Entries »’) ?></p>
<?php else : ?>
<h2 align=”center”>Not Found</h2>
<p align=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>