This is my sidebar code:
<div id="rightcol">
<div id="sidebar">
<?php include (TEMPLATEPATH . '/sidebar3.php'); ?>
<?php include (TEMPLATEPATH . '/sidebar2.php'); ?>
</div>
<div id="rightcol">
<?php include (TEMPLATEPATH . '/featlist.php'); ?>
<div id="sidebar">
<?php include (TEMPLATEPATH . '/sidebar1.php'); ?>
</div>
</div>
This is my page.php code:
<?php get_header(); ?>
<div id="content"><a name="content"></a>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="single" id="post-<?php the_ID(); ?>">
<div class="title">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
</div>
<div class="cover">
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
<div class="clear"></div>
</div>
</div>
<?php endwhile; endif; ?>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>