You need to edit your theme’s stylesheet (usually it’s style.css file located in theme directory) so that your block would be wider. I can’t tell you exact solution, because I don’t know what theme you are using as well as what sidebar you talking about.
Thanks for the reply. My blog is at http://www.assortmentstoday.com. Basically, it’s a three-column layout, and I’m hoping to remove the sidebar on the left on individual posts.
I’d love any feedback or suggestions on the proper code I’d need to use to accomplish this. Thanks!
try to wrap the <div id="sidebar-primary"> div section in sidebar.php into a conditional statement;
example:
<?php if( !is_single() ) : ?>
<div id="sidebar-primary">
...
</div>
<?php endif; //ends if( !is_single() )// ?>
and add to style.css:
.single #content {width: 625px; margin-left: 10px;}
untested – no guarantee that it will work ;-(
alchymyth – that worked perfectly! Thanks so much!