This is where I thought the background color was (lines 13-21):
body {
margin: 0;
padding: 0;
font-size: 62.5%; /* Resets 1em to 10px */
font-family: Georgia, Verdana, Arial, Sans-Serif;
background-color: #045A01;
color: #999999;
text-align: center;
}
The above is found here:
https://jerryshamblin.com/wp-content/themes/mx4_theme/style.css
And the header.php that deals with the background image reads (lines 16-23):
<style type=”text/css” media=”screen”>
body { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbgcolor.jpg”) repeat-x top; }
<?php /* Checks to see whether it needs a sidebar or not */ if ((! $withcomments) && (! is_single()) && (! is_page())) { ?>
#page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbg.gif”) repeat-y top; border-left: 3px solid #000000; border-right: 3px solid #000000;} <?php } else { // No sidebar ?>
#page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbgwide.gif”) repeat-y top; border-left: 3px solid #000000; border-right: 3px solid #000000;} <?php } ?>
#header { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickheader.jpg”) no-repeat bottom center; }
#footer { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickfooter.jpg”) no-repeat bottom; border: none;}
</style>
And this is found here:
https://jerryshamblin.com/wp-content/themes/mx4_theme/header.php