views:

43

answers:

3

Check the following site out, top logo image shows up in FF, but not IE8. Any ideas?

http://blog1.catdynamics.com/

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
The <img> tag is closed properly. It's the opening <a> tag that isn't closed.
Marcus
A: 
<div id="logo">
    <a href="http://blog1.catdynamics.com"&lt;img src="http://blog1.catdynamics.com/wp-content/themes/sergio/images/logo.png" alt="Sergio Gianasso" />
    </a>
</div>

Close your a tag

Marcus
A: 

Looking at the source, I believe you forgot to close your anchor tag:

<a href="http://blog1.catdynamics.com"&lt;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
I love how Chrome and FF are able to determine this and fix the issue for you :) -1 IE
regex
@regex, I wish they'd be more unforgiving, personally. It's a rare occasion, but just this once, +1 @IE.
David Thomas