Hi,
I’m working on a new site and am having trouble getting the background colour of the body to change. At the moment it just stays white even when I set to another colour.
Does anyone know what’s wrong? I have the following code (snippet):
<html>
<body>
<div id=“header”></div>
<div id=“container”>
<div id=“content”>
</div><!–end of content–>
</div><!–end of container–>
</body>
</html>
and the CSS for the body is:
#body {
background-color: #0099FF;
background-image: url(…/images/gradient_blue.png);
background-repeat: repeat-x;
Any help would really be appreciated.
Thanks.