Use CSS to set a light blue background color for the page, and also to stop
the background image from repeating vertically.
In the head section of the page (between <head> and </head> in code view),
add the following:
<style type="text/css">
body {background: #ccccff url(images/background.jpg) repeat-x;}
</style>
where #ccccff is the light blue shade your gradient ends in - change as
required, #ccccff is almost definitely not correct.
images/background.jpg is the background image - the path may have to be
changed for pages in folders.
repeat-x causes the image to repeat horizontally, but not vertically.
--
Ron Symonds
Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp
Reply only to group - emails will be deleted unread.
"lenlu11" <(E-Mail Removed)> wrote in message
news:#(E-Mail Removed)...
> I use a background that is dark blue at the top and then fades to light
> blue at the bottom. When it is repeated I get a sharp edge as I scroll
> down. I would like to have the background remain light blue no matter how
> far the page is scrolled down. How do I do that?
> Lennart in Sweden