Glendon -
Your main stylesheet still has
Code:
#logoWrapper{
background-image: url(../images/header_bg.jpg);
background-repeat: repeat-x;
background-color: #ffffff;
height:145px;
}
which makes the logo space solid white and 145px high. The height is probably ok, but you need to delete the background-color so the header bg can show through. Right now it is only visible in a small strip below #logoWrapper.
Next you need toedit the smartbg stylesheet and change
Code:
.smartBG_4 #headerWrapper {background-image: url(../images/smartbg_4.gif);}
.smartBG_15 #headerWrapper {background-image: url(../images/smartbg_15.gif);}
to something like
Code:
#headerWrapper { /*this gets used on the home page and everywhere you don't have a custom image*/
background-color: #ffffff; /*this makes sure the header bg is the color you want - you can delete it if #mainWrapper is the same color you want for your header*/
background-image: url(../images/your_default_image.gif);
background-position: top left; /*this can be modified to put the image in any position in the header*/
background-repeat: no-repeat;
}
.smartBG_4 #headerWrapper {background: #ffffff url(../images/smartbg_4.gif) top left no-repeat;} /*this is a shorthand version of the above - it does the same things more compactly*/
.smartBG_15 #headerWrapper {background: #ffffff url(../images/smartbg_15.gif) top left no-repeat;}