I just finished making my code live & all of a sudden the Logo won't show anymore. (It was working fine on my Browser Stimulator.) If anyone knows what I did wrong please let me know, a website is not much use if the logo isn't showing up!!
CSS:
#header {
height: 150px;
margin-left: 15px;
background-image: url('../images/headings/header.gif');
background-repeat: no-repeat;
text-align: right;
padding-top: 10px;
padding-right: 50px;
}
HTML
<div id="header">
<a href="realtors.htm">Realtors Click Here</a><br /><br /><br /><br />
<p><a href="http://www.facebook.com/PrimaResidential"><img src="images/headings/facebook.png" alt="Facebook" width="100" height="70" /></a></p>
<p><a href="https://twitter.com/Prima_Updates"><img src="images/headings/twitter.png" alt="Twitter" width="100" height="70" /></a></p>
<p><a href="http://www.flickr.com/photos/prima_residential"><img src="images/headings/flickr.png" alt="Flickr" width="100" height="70" /></a></p>
</div>
Everything else in the header works just fine, I just don't know why the image won't work! The logo is the background-image in the CSS incase anyone was looking for it!
Thanks!!

image urlfor thebackground imageis correct i.e if the image is loading or it failed to load – Uttara Aug 23 '12 at 6:04../images/headings/header.gifwould be relative to where the css file resides, or if its inline with the page, then relative to the page. – Dementic Aug 23 '12 at 6:07