Re: Three Columns
nickmy, you can achieve that by implementing the code provided by Chris above but instead of using single.php you would use page.php to insert <?php locate_template( array( ‘sidebar-left.php’ ), true ) ?> after <?php get_header() ?> and just before <div id=”content”>.
Chris, i’ve added a width and a border-left to your default.css code:
div#content .padder {
margin-right: 225px;
border-right: 0px solid #e4e4e4;
border-left: 1px solid #e4e4e4;
-moz-border-radius-topleft: 6px;
-webkit-border-top-left-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-webkit-border-bottom-left-radius: 6px;
margin-left: 225px;
width:757px;
}