If I look at the template "CSSMenu left + 1 column", the header is defined like:
Code: Select all
<div id="header">
<h1>{cms_selflink dir="start" text="$sitename"}</h1>
<hr class="accessibility" />
</div>
Code: Select all
div#header {
height: 80px; /* adjust according your image size */
background: #385C72;
}
div#header h1 a {
/* you can set your own image here */
background: #385C72 url(images/cms/logo1.gif) no-repeat 0 12px;
display: block;
height: 80px; /* adjust according your image size */
text-indent: -999em; /* this hides the text */
text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}
or is:
the better method, or is there an easier/better way to have more image/text areas in the header? The latest site I did, I ended with header2, embedded in header, and copying, both CSS-blocks, to two new blocks with name header2, but I think there is a better way.
Ronny