From: marina on

From: Ronx on
Use CSS:

<head>
<title>page title</title>
<style type=text/"css">
body {background: blue url(images/background.jpg) repeat: no-repeat center
;}
</style>
</head>

The above is the <head> section of the page in Code View. There should be
other <meta ... >tags as well as the above.
The CSS in the <style..> block sets a blue background to the page, and sets
an image (images/background.jpg) in the center of the page as a background.
The image will not repeat.
Change the colour to suit the image.

--
Ron Symonds
Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp

Reply only to group - emails will be deleted unread.



"marina" <marina(a)discussions.microsoft.com> wrote in message
news:0F6D6D61-2256-4A0D-9061-E1538C294A7F(a)microsoft.com...
>