hi I want to center my website and behind the centered div tag i want to have a gray background but i can't seem to get any codes to work. please give me the code for that. thanks
To make the whole background grey add this to your CSS file: body { background:grey; margin: 0px auto; } You should not use the <center> tags if you are using them, simply adding margin:0px auto; to your outermost div will center the whole site.