Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to apply background image to the body of asp.net page. I have tried like this:

body
{
  font-family: sans-serif;
  font-weight:bold;
  background-image:url('C:\Users\ARCHANA\Downloads\Opera-Background-Blue-Swirls.jpg');
} 

Its is getting applied in the design part, but when I run the application, the image is not applied. I cant figure out what is the problem. Can anyone kindly help me. Thankyou in advance.

share|improve this question

2 Answers

up vote 4 down vote accepted

You can't reference a local file like that on a web server. Copy it somewhere in your application and reference it using a URI, ie,

background-image:url('/Images/Opera-Background-Blue-Swirls.jpg');
share|improve this answer
why forward slash is used, when I copy the link I get backward slash. – Archana B.R Oct 6 '12 at 7:08
1  
@ArchanaB.R it's just convention for URI paths, as opposed to local file system paths. – dbaseman Oct 6 '12 at 7:09
3  
Forward slashes are used in URLs. Backward slashes are used in Windows OS (DOS). – Tim Oct 6 '12 at 7:09

You have to give url not the directory path.

body
{
  font-family: sans-serif;
  font-weight:bold;
  background-image:url('http://yourwebsite.com/Users/ARCHANA/Downloads/Opera-Background-Blue-Swirls.jpg');
} 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.