This is very interesting to me... This image displays perfectly well in Safari, but not at all in Firefox! Here's the relevant code:
<div id="ad">
<p>Advertisment</p>
<img src="/ADS/fakead1.gif" />
</div>
With CSS:
#ad{color: #666;}
#ad p{
font-size: .5em;
text-align: center;
padding: 0;
margin: 0;
}
#ad img{
width: 9em;
padding: .5em;
margin: 0;
}
Why would this code cause Firefox to simply ignore the image? (Again, it works perfectly fine with Safari.)