Bryan,
You can set a background color or background image to that template by adjusting the #content and #left divs in the style sheet.
For example, if you wanted to make the #content section have a black background you would add background-color: #000; to the #content section of the css.
Code:
#content { float:left; margin:0 0 0 0px; font:Verdana, Arial, Helvetica, sans-serif; color:#000000; font-size:12px; width:524px; line-height:18px; margin-top: 15px; background-color: #000; }
Also, if you wanted to add an image you would just add background-image: url(blah.jpg); to the #content in the css.
Code:
#content { float:left; margin:0 0 0 0px; font:Verdana, Arial, Helvetica, sans-serif; color:#000000; font-size:12px; width:524px; line-height:18px; margin-top: 15px; background-image: url(blah.jpg); }
Same goes for the #left div (which is actually on the right side).
Bookmarks