yes I have archive.php file but my code which contains the_content(); is inside the Page Template(page.php) I am using the tehme Plainscape 1.0.3 by Srini G
here is the code for page.php
[code]
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><?php the_title(); ?></h2>
<div class="entry">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
<?php wp_link_pages(array('before' => '<p>Pages: ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
<div class="postmetadata">
<?php if( function_exists('the_tags') )
the_tags(__('Tags: '), ', ', '
');
?>
<?php if('open' == $post->comment_status) { ?><?php _e('Comment') ?> (<?php comments_rss_link('RSS'); ?>)<?php } ?>
<?php if('open' == $post->ping_status) { ?> | " rel="trackback"><?php _e('Trackback') ?><?php } ?>
<?php edit_post_link(__('Edit'), ' | ', ''); ?>
</div>
</div>
<?php comments_template(); ?>
<?php endwhile; endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
[/code]