Set a background colour (blue?) for the body, and set a different background
colour (white?) for the centered page container
In the <head> of the page add CSS so the page resembles:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Centered page with blue borders</title>
<style type="text/css">
body {
background: blue;
margin:0;
padding:0;
}
#wrapper {
background: white;
margin: 0 auto;
width: 760px;
}
</style>
</head>
<body>
<div id="wrapper">
page content
</div>
</body>
</html>
--
Ron Symonds
Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp
Reply only to group - emails will be deleted unread.
"nmh" <(E-Mail Removed)> wrote in message
news:E32415EB-D830-4530-8E15-(E-Mail Removed)...
> I am using Expression Web and I have set the width of my website to 760px
> and
> centered it. I would like to add a colour - blue perhaps - around the
> website
> so the viewer will not be "hit" by white.
>
> How do I do that, please.
>
> Thanks.
> Norm.