after spending all morning trawling the forums, i find it within 5 mins of posting my question.
For all who want to remove the right side bar:
From style.css: remove
- Code: Select all
#container {
margin-left: 220px;
margin-right: 220px;
To this:
#container {
margin-left: 220px;
//margin-right: 220px;
margin-right: 0px;
from sidebar.php remove
- Code: Select all
<div id="sidebar2" class="widget-area" role="complementary">
<ul class="xoxo">
<?php if ( ! dynamic_sidebar( 'secondary-widget-area' ) ) : ?>
<li class="widget-container">
<h3 class="widget-title"><?php _e( 'Categories', 'slidingdoor' ); ?></h3>
<ul>
<?php
wp_list_categories(array('title_li' => ''));
?>
</ul>
</li>
<?php endif;
?>
</ul>
</div><!-- #secondary .widget-area -->
