Hi, I would like to create two columns.
In the left column have ALL the posts from a category listed.
In the right hand column have 5 posts from the same category.
When I click "older" or "newer" i would like the list to remain the same in the left column, and the 5 newer or older posts to be listed in the right column.
I have the following code, but when I click older or newer the 5 posts remain the same. :(
<div id="left">
<?php
query_posts('showposts=25');
while (have_posts()) : the_post(); ?>
"><?php the_title();?>
<?php endwhile; ?>
</div>
<div id="right">
<?php
query_posts('showposts=5');
while (have_posts()) : the_post(); ?>
"><?php the_title();?>
<?php the_excerpt(); ?>
<?php endwhile; ?>
</div>