If you want the sideboxes themselves (not the sidebar they sit on) to be yellow background, that is easy. Change
Code:
.leftBoxContainer, .rightBoxContainer {
margin: 0em;
border: 1px solid #ff0000;
border-bottom: 5px solid #ff0000;
margin-top: 1.5em;
}
to
Code:
.leftBoxContainer, .rightBoxContainer {
margin: 0em;
background: #ffff33;
border: 1px solid #ff0000;
border-bottom: 5px solid #ff0000;
margin-top: 1.5em;
}
Adjust the background color as required.
You can do this with #navColumnOne and #navColumnTwo if you want the whole sidebar backgrounds yellow.