you only have that big logo there without the bg repeating.
so you may want to check at its Main CSS
style manager> your style name> Main CSS> Additional CSS
Quote:
#logostrip {
background: #E5E5E5 url(images/metallix/misc/logostrip_bg.gif);
padding: 0;
margin: 0;
height: 113px;
width: 100%
}
|
check your logostrip bg, is it there ..if its there is it cut properly, I mean it should be just 1-10px width of the right hand end section of your header logo/banner.
and If your logostrip bg is good and still not working change the CSS above to:
Quote:
#logostrip {
background: #E5E5E5 url(images/metallix/misc/logostrip_bg.gif);
background-repeat:repeat-x; /*added new*/
padding: 0;
margin: 0;
height: 113px;
width: 100%
}
|