this totally depends on the theme you are using.
as with all issues concerning css, it would be best, if you could post a link to your site.
Theme is Satoshi.
Site is onlinewritingsolutions.com
Thanks.
Check out the contact page for what I mean. I am thinking I could do some kind of version of the front page template, but without all the headlines, etc. and maybe just use that because it goes full width and does not use sidebars.
this style in style.css of your theme sets the width:
#content { float: left; width: 500px; }
however, to change this only for your template without sidebar (page.php ?), you somehow need to add a distinguishing css class to the <div id="content"> in this template; for instance something like:
<div id="content" class="no-sidebar">
the add a new style to style.css:
#content.no-sidebar { float: left; width: 100%; }
Awesome! That did it. Thanks for your help.
Ok, well that fixed like 95% of my issues, but I found a lingering problem and you can see it here on a portfolio content page.
http://onlinewritingsolutions.com/portfolio/counting-the-costs-of-cloud-backup/
Something is still a bit messed up here, but this is the only thing left that does not go full width. Any idea what would solve this?
Thanks in advance.
the ‘project’ page seems to have its own template with a div #project-content, whose style is in style.css:
#project-content { float: left; width: 450px; }