You currently have no images on your sideboxes; the colors are background-color: and border: properties.
The default sidebox width is 150px. You can set this to whatever you want in admin, and then make your images to match.
You can do something like this in your stylesheet:
Code:
.leftBoxHeading, .rightBoxHeading {
background: url(../images/yourtopbg.gif) no-repeat;
border: none;
}
.leftBoxContainer, .rightBoxContainer {
background: url(../images/yourmiddlebg.gif) repeat-y;/*or no-repeat if you have a single image to go full length*/
border: none;/*or whatever you want for the whole box border*/
}
.sideBoxContent {
background: url(../images/yourbottombg.gif) no-repeat bottom center;
border: none;
}
Save the bg images in /includes/templates/your_template/images/.