I'm working on a simple web page for a Web Design class I'm in, and the external stylesheet I'm working with works fine in IE, but the script for my background image doesn't work in FireFox. The folders are all structured correctly, I've checked. Here's the part of the sheet that's causing me trouble. body { background:url("img\bg\index.jpg") repeat fixed } Code (markup): As you can see, I'm using a textured .jpg image that's in the folder "bg" which is in a seperate "img" folder. I'm positive these are placed correctly. Can anyone help me figure out why Firefox won't display the background image?
shouldn't there be a ";" at the end of each css statement? (I may be wrong body { background:url("img\bg\index.jpg") repeat fixed; } Code (markup):