Check the following site out, top logo image shows up in FF, but not IE8. Any ideas?
A:
you img
tag is not closed, put a close on your image tag
<img alt="Sergio Gianasso" src="http://blog1.catdynamics.com/wp-content/themes/sergio/images/logo.png" />
Edit:
In IE your anchor tag is not closed.
rob waminal
2010-10-01 01:34:34
The <img> tag is closed properly. It's the opening <a> tag that isn't closed.
Marcus
2010-10-01 01:38:01
A:
<div id="logo">
<a href="http://blog1.catdynamics.com"<img src="http://blog1.catdynamics.com/wp-content/themes/sergio/images/logo.png" alt="Sergio Gianasso" />
</a>
</div>
Close your a tag
Marcus
2010-10-01 01:35:51
A:
Looking at the source, I believe you forgot to close your anchor tag:
<a href="http://blog1.catdynamics.com"<img src="http://blog1.catdynamics.com/wp-content/themes/sergio/images/logo.png" alt="Sergio Gianasso" /></a>
The key part is where you can see .com" <img
regex
2010-10-01 01:37:02
I love how Chrome and FF are able to determine this and fix the issue for you :) -1 IE
regex
2010-10-01 01:38:07
@regex, I wish they'd be more unforgiving, personally. It's a rare occasion, but just this once, +1 @IE.
David Thomas
2010-10-01 02:00:59