SuzyB,
You need to create a new file in Willingness theme folder via FTP. Name it page_fullwidth.php
Keep the following code on page_fullwidth.php
<?php
/**
* Template Name: Full Width Template
*
* @package willingness
*/
get_header(); ?>
<style type="text/css">
#content {
width: 100%;
padding: 0;
}
.no-right .site-content {
margin: 0 0 0 0;
}
.no-left .site-content {
margin: 0 0 0 0;
}
.no-left .no-right .site-content{
margin: 0 0 0 0;
}
.site-content{
margin: 0;
}
#secondary{
display: none;
}
#right-sidebar{
display: none;
}
</style>
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() )
comments_template();
?>
<?php endwhile; // end of the loop. ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
After that, go to your page, and in the Page Attributes section select Full Width Template
Thank you.