I made a full width template for my theme. Here is the template:
http://habitswap.com/?page_id=387
However, now when I try to add images to the page they don't show up. Here is my template code:
<?php
/*
Template Name: Full Width
*/
?>
<?php get_header();?>
<div id="widecontent_container">
<div id="widecontent_container_bg">
<div id="content">
<div id="postcontainer">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="tida">
<h1 class="title"><?php the_title(); ?></h1>
<div class="right clear"> </div>
</div>
<?php // end title | begin text ?>
<div class="page" id="page-<?php the_ID(); ?>">
<?php the_content(); ?>
</div>
<?php // end text ?>
</div>
<?php endwhile;
endif; ?>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>
Thanks,
Chris