so you want a full width wordpress blog yes??
can you not take single.php and duplicate it then rename the duplicated one to fullwidth.php and then add
<?php /* Template Name Posts: Fullwidth */ ?>
before the first line of code.
If that isn't what you want then change this part of your style.css from
#header, #menubar-wrapper, #breadcrumb-wrapper, #content-wrapper, #subcontent-wrapper {
margin: 0 auto;
width: 980px;
}
to what i have below:
#header, #menubar-wrapper, #breadcrumb-wrapper, #content-wrapper, #subcontent-wrapper {
margin: 0 auto;
width: 100%;
}
that will then turn it so you no longer have side parts
Let me know if this works for you.
If this is not what you want then do let me know and i can try again if you specify a little clearer to me
