> Thanks Ric. I adjusted the div code to read as: > background-image: url(C:\hcogw10-01-09testing\images\hcogwsmall.bmp);
That's not going to be particularly helpful. When you put that online, it's still going to try to look on the C: drive of the webserver for the image file, and your webserver probably doesn't have a C: drive. You'll want to use a relative path (that is, a path to the image in relation to the stylesheet). Something like this: url(../images/hcogwsmall.bmp); I don't know your directory structure, so I don't know if that particular example will work. But, if your site is stored in c:\hcogw10-01-09testing, and your stylesheet is in c:\hcogw10-01-09testing\styles, the ".." goes to the parent directory of the stylesheet (hcogw10-01-09testing), and then goes to images, then looks for hcogwsmall.bmp. Also, consider using a compressed image format like jpg, gif, or png instead of the uncompressed (and thus significantly larger) bmp. That's certainly not causing your problem, but once your site goes online, it will be much kinder to your users, since your page won't take as long to load. But it would still be good to have the HTML, and a better description of the problem. Questions that pop into my head are: - Is the image showing up at all? - The margins on the container div are set to 5px auto, so that means that the container div is 5px down, and centered in its container (the page?). Is the background image 5px down, and starting at the left side of the container div? (It should be, that's what you told it.) - Do you really want it to be at the top left corner of the window? (in which case, putting the background on the container is the wrong thing to do. You really want it on the body.) ---Tim ______________________________________________________________________ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/