I am having a little trouble getting a page template to make the content go all the way across... i have taken out the sidebars, but cannot figure out how to code the page template. here is the page
http://www.sterlingmadewell.com/?page_id=3
and here is the code i have for the page template:
<?php
/*
Template Name: Pictures
*/
?>
<?php get_header(); ?>
<div id="content_box" class="fullwidth">
<div id="content" class="pages">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<div class="entry">
<?php the_content('<p>Read the rest of this page →</p>'); ?>
<?php link_pages('<p>Pages: ', '</p>', 'number'); ?>
</div>
<?php if ('open' == $post-> comment_status) { ?>
<p class="tagged">#comments"><?php comments_number('No Comments', '1 Comment', '% Comments'); ?></p>
<div class="clear"></div>
<?php } else { ?>
<div class="clear rule"></div>
<?php } ?>
<?php endwhile; endif; ?>
<?php if ('open' == $post-> comment_status) { comments_template(); } ?>
</div>
</div>
<?php get_footer(); ?>
not resolved