Hi Michael,
Thanks for the links.
I'm still having trouble; those pages make it seem too complicated.
I made it to this page: http://codex.wordpress.org/Category_Templates
The first step in modifying what happens when someone visits a Category page is to figure out which of your theme's files is going to be used to display the posts. This is known as the Template Hierarchy.
In the case of categories, the hierarchy is fairly simple. For instance, suppose the ID number of the Category in question is 6. The Template Hierarchy specifies that WordPress will use the first Template file it finds in your current Theme's directory from the following list:
1. category-6.php
2. category.php
3. archive.php
4. index.php
Since I don't have the first three template files listed, so I'm now looking in the index.php file. The problem is that I don't see anything related to categories in that file... so I'm at a loss as to what to do.
Here is my index.php file:
`<?php get_header(); ?>
<div id="main-wrapper">
<div id="left">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2 id="post-<?php the_ID(); ?>">" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></h2>
<div class="meta-data">
<span class="auth-date">Author: <?php the_author();?> | Posted: <?php the_time('d-m-Y'); ?></span>
<span class="comments-no"><?php comments_popup_link('0', '1', '%'); ?></span>
</div>
<div class="entry">
<?php the_content('Continue reading »'); ?>
</div>
<?php endwhile; ?>
<div id="post-links">
<span class="prev-entries"><?php next_posts_link('Previous Entries') ?></span>
<span class="next-entries"><?php previous_posts_link('Next Entries') ?></span>
</div>
<?php else : ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
</div>
<?php get_sidebar();?>
</div>
<?php get_footer(); ?>`
Any further assistance is appreciated.