Hello,
I just signed up for free account and am having trouble with one image and a pdf loading. The background image is loaded in a media query from /css/responsive.css and the image is in /img/picture.jpg. I keep getting a 404 error and the console says request header is:
GET /img/big_country.jpg HTTP/1.1
Host: akillian.x10host.com
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0
Accept: */*
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Referer: http://akillian.x10host.com/my_portfolio/css/responsive.css
DNT: 1
Connection: keep-alive
Cache-Control: max-age=0
response header:
HTTP/1.1 404 Not Found
Date: Thu, 14 Jul 2016 23:30:55 GMT
Content-Length: 336
Content-Type: text/html; charset=iso-8859-1
X-Varnish: 122459107 123667746
Age: 644
X-Cache: HIT
X-Cache-Hits: 3
Connection: keep-alive
The CSS to retrieve image is:
/* ===== Change Background Image for smaller devices =================*/
html {
background: url(/img/small_big_country.jpg) no-repeat center center fixed;
......
}
/* For devices 400px and larger: */
@Media only screen and (min-device-width: 400px) {
html {
background: url(/img/big_country.jpg) no-repeat center center fixed;
.....
}
}
Any help much appreciated...
I just signed up for free account and am having trouble with one image and a pdf loading. The background image is loaded in a media query from /css/responsive.css and the image is in /img/picture.jpg. I keep getting a 404 error and the console says request header is:
GET /img/big_country.jpg HTTP/1.1
Host: akillian.x10host.com
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0
Accept: */*
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Referer: http://akillian.x10host.com/my_portfolio/css/responsive.css
DNT: 1
Connection: keep-alive
Cache-Control: max-age=0
response header:
HTTP/1.1 404 Not Found
Date: Thu, 14 Jul 2016 23:30:55 GMT
Content-Length: 336
Content-Type: text/html; charset=iso-8859-1
X-Varnish: 122459107 123667746
Age: 644
X-Cache: HIT
X-Cache-Hits: 3
Connection: keep-alive
The CSS to retrieve image is:
/* ===== Change Background Image for smaller devices =================*/
html {
background: url(/img/small_big_country.jpg) no-repeat center center fixed;
......
}
/* For devices 400px and larger: */
@Media only screen and (min-device-width: 400px) {
html {
background: url(/img/big_country.jpg) no-repeat center center fixed;
.....
}
}
Any help much appreciated...
Last edited: