Here is what I have setup. I currently have a small background image repeating. In addition, I have a 5x256 color bar that I want to run down the left side of the theme. If someone can shed some light on why this isn't working that would be great. Thanks!
I added this to functions.php
// add color bg-side
function side_div() {?>
<div id="bg-side">
</div>
<?php }
add_action('thematic_before','side_div');
and added this in my style.css
#bg-side {
background: url(images/bg-side.jpg) repeat-y;
}
Chris