My background image has disappeared
I know this problem has been covered before but none of the solutions are helping. At some point in the last two months my background image disappeared, I don't "visit" my website very often so I didn't notice it until now. Where my Spitfire image should be it is all white.
My css code is as follows:
body {
margin: 0;
font-family: times new roman,arial,verdana,helvetica,sans-serif;
font-size: 100%;
color: #000000;
background-image: url(../images/spitfire1_background.jpg);
background-color: #B2DDFF;
}
The image is located in the templates/classic/images folder and I have double checked the file name. The permissions for the image file is set to 0644 as all the other image files and they work fine. I have even tried changing the image to something different but nothing works. I don't make many changes to the code, only to update the shops banner or to edit the welcome text.
My website is www.jaysmodelkits.com
Any help would be appreciated. Thanks.
Re: My background image has disappeared
Not sure if this has something to do with it
PHP Code:
<!--bof-branding display-->
<div id="logoWrapper">
<div id="logo"><a href="http://www.jaysmodelkits.com/jaysmk/"><img src="includes/templates/template_default/images/HEADER_LOGO_IMAGE" alt="" /></a></div>
</div>
<br class="clearBoth" />
<!--eof-branding display-->
HEADER_LOGO_IMAGE appears to be "undefined"
Re: My background image has disappeared
Hi John,
You have a stray b in your stylesheet.css. Its right at the start of the css code. Remove that and your background will come back.
Regards raptar
Re: My background image has disappeared
Quote:
Originally Posted by
raptar
Hi John,
You have a stray b in your stylesheet.css. Its right at the start of the css code. Remove that and your background will come back.
Regards raptar
Neat :D Totally missed that.
Re: My background image has disappeared
You guys are amazing. I totally missed that too. I guess I must have missed typed at one point, I search for background so I can find the relevant line of code using ctrl F and I guess I was too quick for it. Who knows. Well done and thanks for getting my website looking the way it should.