Quote:
No, I want the image to move down as the page scrolls down |
It sounds like you don't want the image to scroll up...in otherwords, you
want a fixed background:
background-attachment : fixed
however, as AFAIK, that attribute will only work as you want it to work when
the background is attached to the BODY tag.
That said, it sounds like you may have a lot of text, and you want it all to
fit on the image.
As such, you then need to have the text be placed inside a div smaller than
the background image, and then set that div to scroll if the text overflows
it.
HOWEVER, that tends to be a bad way to go about designing a web site, as you
really don't want the most important part of the page (the content) trapped
in a little box that someone has to scroll through. You might be better of
rethinking your page layout.
-Darrel