Click to See Complete Forum and Search --> : Help with background color


ellen4566
03-17-2006, 01:48 PM
I have a site (approx. 700x600) that is centered on the screen, but I want the extra space outside of the page to be a certain color (not white) so that the page doesn't look like it is hanging in space. How do I change that color?

Site is at www.foresitecomputer.com/proposals/miagg/index.htm (http://www.foresitecomputer.com/proposals/miagg/index.htm)

Thanks.

sitehatchery
03-17-2006, 02:16 PM
Sounds like you just want to change the background color. You could easily change the <body> tag to include a bgcolor property: <body ... bgcolor="any color"...>.

Or, better, you could make a CSS rule:

body{
background-color:any color;
}