why are the images broken
I have this site login is test/test all the images are broken....I cant understand why...i am viewing it in firebug and all the i开发者_Python百科mages are there....whats the deal...
If you use Firebug's Net panel you'll see that all your images return a 403 Forbidden status code:
http://myposnation.com/img/th_blue/bk_body.jpg
HTTP/1.1 403 Forbidden
Date: Mon, 21 Mar 2011 17:08:20 GMT
Server: Apache
Content-Length: 344
Keep-Alive: timeout=5, max=8
Connection: Keep-Alive
Content-Type: text/html; charset=iso-8859-1
Pics load fine otherwise so my educated guess is that you have an anti-leech stuff out there (probably in your .htaccess
file) that's testing and rejecting the referrer.
It could be the permissions on the folder? as the images are showing as forbidden
The url() attribute shouldn't have quotes around the path. Quotes can work but it's not standard.
background:#565758 url(../img/bk_login_ver.jpg) no-repeat -5px bottom;
精彩评论