Background image not working

Hello,

The background image does not appear. I have use this code but nothing hapens.

On XHTML <div id=“front-face”>
</div>

On CSS #front-face {position: relative; float: left; width: 900px; height: 396px; background: #800000 url(images/home-bg.gif) 0 0 no-repeat;}

Please help.
Thanks

What is the “0 0” for? If it’s for positioning, then you need to declare that in your css using attributes like “top, left, etc.” However, it really isn’t necessary at all as far as I know.

Hmmm, the following looks fine:

#front-face {
position : relative;
float : left;
width : 900px;
height : 396px;
background : #800000 url(images/home-bg.gif) no-repeat 0% 0%;
}

Thus I suspect the path to your GIF is wrong.