i have set an image as background in my web page using css it works perfect in IE but is not loaded in fire fox what should i do? i am writting following lines body {background-image: url("\MyPictures\rose.jpg"); background-repeat:no-repeat; background-attachment:fixed; background-position:center;} also i want to set image width equals to page width how can it be done?
Try to set relative url for bg image...not absolute! like url(images/rose.jpg). But i think the problem is that you linked image from mydocument? You must have image inside page folder.