Im using a template I created called ‘No Sidebar’, the code for it is below..
<?php
/*
Template Name: No Sidebar
*/
?>
<?php get_header(); ?>
<div id=”content” style=”width:975px; padding-right:0px; border-right:0px;”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”entry”>
<?php the_content(‘Read the rest of this entry »’); ?>
<br clear=”all” />
<?php endwhile; else: ?>
<div class=”entry”>
<p><b>Sorry, but you are looking for something that isn’t here.</b></p>
</div>
<?php endif; ?>
<div class=”entry”>
<p><?php next_posts_link(‘« Older Entries’) ?> <?php previous_posts_link(‘Newer Entries »’) ?></p>
</div>
</div>
<?php get_footer(); ?>
Again, thanks for your help ??