In the template:
In the stylesheet:
{title}
{content}
where the margin-left and margin-right for the div#main is used to squeeze it between the left/right column. You could use percentages as well to make it fluid...div#content {
clear:both;
padding-top: 3px;
padding-bottom: 3px;
}
div#leftsidebar {
float: left;
margin-left: 0px;
margin-right: 0px;
width: 120px;
padding: 0px 2px;
}
div#rightsidebar {
float: right;
margin-left: 0px;
margin-right: 0px;
width: 120px;
padding: 0px 2px;
}
div#main {
margin-left: 125px;
margin-right: 125px;
padding: 0px;
}
Ronny