Hi demtnman,
you will find that option hidden away in Template Options > Styles > Background.
For my site I also added a thin frame and shadow around the boxed page. For that, I replace the following code in css/grid.css:
.boxed #wrap_all {
margin: 0 auto;
width: 990px; }
with:
.boxed #wrap_all {
margin: 0 auto;
width: 990px;
border-width: 0px 1px;
border-style: solid;
border-color: #AAA;
-moz-box-shadow: 2px 2px 5px #CCC,-2px -2px 5px #CCC;
-webkit-box-shadow: 2px 2px 5px #CCC,-2px -2px 5px #CCC;
box-shadow:2px 2px 5px #CCC,-2px -2px 5px #CCC;
}