Do not recall what you had for an image???
but try adjusting this in the style sheet with your image name and height etc
Code:
#logoWrapper{
background-image: url(../images/hdr_bg.gif);
For the cat tabs in the stylesheet take this:
Code:
#navMainWrapper, #navSuppWrapper, #navCatTabsWrapper {
background-image: url(../images/nav_bg.gif);
background-repeat: repeat-x;
background-color: #f5f5d6;
height: 59px !important;
margin: 0em;
background-color: #ffffff;
font-weight: bold;
color: #ffffff;
height: 1%;
width: 100%;
}
and seperate the navcattabswrapper like this removing the 59px line and I think that this will do it:
Code:
#navMainWrapper, #navSuppWrapper {
background-image: url(../images/nav_bg.gif);
background-repeat: repeat-x;
background-color: #f5f5d6;
height: 59px !important;
margin: 0em;
background-color: #ffffff;
font-weight: bold;
color: #ffffff;
height: 1%;
width: 100%;
}
#navCatTabsWrapper {
background-image: url(../images/nav_bg.gif);
background-repeat: repeat;
background-color: #f5f5d6;
margin: 0em;
background-color: #ffffff;
font-weight: bold;
color: #ffffff;
height: 1%;
width: 100%;
}