You know, I use the default template all the time as my base for new projects and one of the things that needs to happen is that the header.php template needs a few lines of code removed in order to take out the background of the page (the outer edges with the soft shadow edge).
It’s on lines 20-31 in the default numbering and it contains this:
<style type="text/css" media="screen">
<?php
// Checks to see whether it needs a sidebar or not
if ( !empty($withcomments) && !is_single() ) {
?>
#page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg-<?php bloginfo('text_direction'); ?>.jpg") repeat-y top; border: none; }
<?php } else { // No sidebar ?>
#page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbgwide.jpg") repeat-y top; border: none; }
<?php } ?>
</style>
There are two callouts for background images here on the page. Pull this section out and you’ll see that your page background will now look like it lines up with your header graphic. The page is currently using a background image which is as wide as your header, but you wouldn’t be able to tell just by looking at the default layout.
And then you’ll need to pull the footer image code of of style.css for the “bottom” of the default page background graphics to be removed, too.