I’m getting an error in firebug:
“NetworkError: 404 Not Found – (removed)/style.css”
What does that mean and what do I need to do?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
HTTP 404 means exactly what it says — File Not Found.
Somewhere in your document, you are linking to (removed)/style.css, and that file doesn’t exist (wrong name, wrong location) on the server. There is a line in your code probably like this:
pointing to it, and that needs to be changed to point to wherever that file is actually located.
Update:
Change that line to
<link href="(removed)/wp-content/themes/imbalance2/style.css" rel="stylesheet" type="text/css" />