its included
QUOTE
.headerimage {
position: relative;
width: px;
height: px;
margin-left: auto;
margin-right: auto;
margin-bottom: 0px;
background-image: url("");
background-repeat: no-repeat;
}
this controls the header in flexible squares.
width = width of image
height = height ""
i'll try to find a good site that will help
------------
found it! i thought it was gone, but i found it.
QUOTE
Can I add an image header to a S2 layout? (This includes sidebar layouts as well)
Yes, it is very simple and guaranteed to work in all browsers (unlike the S1). Once you have downloaded my .css document
(like the one found on this page: a flexible squares style) open it up and scroll to the very bottom of the code. Here is where you insert the info of your header (which should already be hosted somewhere):
.headerimage {
position: relative;
width: 100%;
height: 250px;
margin-bottom: 5px;
background-image: url("http://urlofyourheader.jpg");
background-position: center;
background-repeat: no-repeat;
}
Let's say you want your header and text to be the same width and your header is 600px wide go into the body and change the width of your table (entry data) as well approx. the same value:
#content
{
width: 570px;
With a header you can still load a background image, this can be changed here:
body {
background-color: #f2f2f2;
background-image: url(http://bgimage.gif);