how can i show my side bar ONLY on the blog not the pages?
if the theme has a page.php, remove the call of the sidebar (<?php get_sidebar(); ?>
?) there; then tweak the css to center the content or fill the available space.
if the theme does not have a page.php, wrap the call of the sidebar into a conditional statement;
example:
<?php if( !is_page() ) get_sidebar(); ?>
unless the theme uses body_class()
, finding any page specific css class for tweaking the formatting might be a problem.