i searched and searched but can't find, i'm looking in stylesheet.css.
#logoWrapper {
width:760px;
height:110px;
background-image:url(../images/your_header_image.???);
background-repeat:no-repeat;
}
i searched and searched but can't find, i'm looking in stylesheet.css.
#logoWrapper {
width:760px;
height:110px;
background-image:url(../images/your_header_image.???);
background-repeat:no-repeat;
}
what exactly is missing here?
If I am understanding of your question, you must be using the css for the default template. logo wrapper is not on that css template. You can simply add it by finding this section on your stylesheet.css
/*wrappers - page or section containers*/
#mainWrapper {
background-color: #550000;
text-align: left;
width: 100%;
vertical-align: top;
}
Insert your logo wrapper right after and make sure you do not forget to close with the }
Hope that helps. ;)