I would also love to do this but am having trouble..
my default archives.php is as follows:
<?php get_header(); ?>
<?php if (have_posts()) : ?>
<div class="grid_12 title">
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<h1 class="description">Archive for the ‘<?php single_cat_title(); ?>’ Category</h1>
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
<h1 class="description">Posts Tagged ‘<?php single_tag_title(); ?>’</h1>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h1 class="description">Archive for <?php the_time('F jS, Y'); ?></h1>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h1 class="description">Archive for <?php the_time('F, Y'); ?></h1>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<h1 class="description">Archive for <?php the_time('Y'); ?></h1>
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
<h1 class="description">Author Archive</h1>
<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
<h1 class="description">Blog Archives</h1>
<?php } ?>
</div>
<div class="grid_12 content">
<div class="grid_1 alpha">
</div>
<!-- end .grid_1 -->
<div class="grid_8">
<?php while (have_posts()) : the_post(); ?>
<div class="post rounded">
<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
<p class="postmetadata">
<?php the_time('F jS Y') ?><br />
<?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
</p>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('← Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries →') ?></div>
</div>
<?php else : ?>
<h1 class="center">Not Found</h1>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
<?php endif; ?>
</div>
<!-- end .grid_8 -->
<div class="grid_3 omega">
<?php get_sidebar(); ?>
</div>
<!-- end .grid_3 -->
</div>
<!-- end .grid_12 -->
<div class="clear"> </div>
<?php get_footer(); ?>
But I cant for the life of me work out where to put the code as mentioned above.
Any help would be much appreciated.