Hi draco1938,
The header constructed from several images to accomodate the flexibility in page width. So, I split the master image up to 5 chunks of images:
- background
- left side
- right side
- bottom
- logo
The construction it self took place in custom.css (u can edit it with any of your favourite text editor):
for background in line-10. The assignment would be similar to this:
#top_wrapper{
background:transparent url(../images/headerbg.jpg) repeat-x scroll 0% 50%;
height:110px;
width:950px;
}
for the left side in line-16, similar to this:
#header_left {
background:transparent url(../images/headerleft.jpg) no-repeat scroll left center;
}
as for the right side line-20, which is:
#header_right {
background:transparent url(../images/headerright.jpg) no-repeat scroll right center;
}
and for the bottom line-28:
#header_nav {
background:transparent url(../images/topnav_bg.jpg) no-repeat scroll 0% 50%;
float:left;
height:22px;
}
the last is logo at line-34:
#logo {
background:transparent url(../images/logo.jpg) no-repeat scroll left bottom;
height:110px;
}
so if you want to remove the logo, just delete the background's line in #logo declaration, so it becomes:
#logo {
height:110px;
}
try hacking around on deleting the backgrounds to see different results.
If you need the master image of the header, u can download the attachment file I provided below. There are two files inside it: the clean one and the header with navigation back-shade-image.
So, if your page width (the header width) is fixed and you want to use only one single image, you can remove all backgrounds declaration in five place I've describe above but one #top_wrapper. Change the filename(logo.jpg) with your image filename. Alternatively you can override the logo.jpg with your image.
Hope this can help..