Full width blog page
I have seen various versions of this question but still cannot seem to find a complete answer.
I figured out to remove the entire code below from sidebar-blog.php
<!-- start tabs -->
<div class="tabprice">
<ul class="tabnavig">
<li><a href="#priceblock1"><?php _e( 'Popular', APP_TD ); ?></a></li>
<li><a href="#priceblock2"><?php _e( 'Comments', APP_TD ); ?></a></li>
<li><a href="#priceblock3"><?php _e( 'Tags', APP_TD ); ?></a></li>
</ul>
<!-- popular tab 1 -->
<div id="priceblock1">
<div class="clr"></div>
<?php get_template_part( 'includes/sidebar', 'popular' ); ?>
</div>
<!-- comments tab 2 -->
<div id="priceblock2">
<div class="clr"></div>
<?php get_template_part( 'includes/sidebar', 'comments' ); ?>
</div><!-- /priceblock2 -->
<!-- tag cloud tab 3 -->
<div id="priceblock3">
<div class="clr"></div>
<div class="pricetab">
<?php if ( function_exists('wp_tag_cloud') ) : ?>
<div id="tagcloud">
<?php wp_tag_cloud('smallest=9&largest=16'); ?>
</div>
<?php endif; ?>
<div class="clr"></div>
</div>
</div>
</div><!-- end tabs -->
I need to remove the sidebar and I now need to stretch it full width
How can i do that?