I don't know a lot about dreamweaver, but if you are comfortable going into your code and changing that, I can help you.
For your page background, you sould see something that looks similar to:
HTML Code:
body {
some stuff here;
}
If that is the case, do this:
HTML Code:
body {
some stuff here;
background-image:url("your-image.gif");
background-repeat:repeat-x;
background-attachment:fixed;
background-position:top;
background-color:#FFFFFF;
}
I'll explain:
"background-image:url("your-image.gif");" tells the page where to find your image
"background-repeat:repeat-x;" tells the page that your image is to repeat horizontally
"background-attachment:fixed;" says your image will be there, even if you scroll
"background-position:top;" Your image is at the top
"background-color:#FFFFFF;" is the color of the rest of the page, below the image
Hope I could help you,
Micah
|