You have errors in your code, and IE probably chokes on them. Fix them and see if it helps:
Code:
<body>
<linkrel="shortcut icon" href="images/favicon.ico">
<div id="outer">
<div class="contentwidth main">
<div class="logo">
<h1>
<a href="http://danielmeade.net" class="custom" <img src="http://danielmeade.net/wp-content/themes/minimal/images/dmlogo.png" alt="Daniel Meade"> </a> </h1>
</div><!-- end logo -->
should be:
Code:
<body>
<link rel="shortcut icon" href="images/favicon.ico">
<div id="outer">
<div class="contentwidth main">
<div class="logo">
<h1>
<a href="http://danielmeade.net" class="custom"> <img src="http://danielmeade.net/wp-content/themes/minimal/images/dmlogo.png" alt="Daniel Meade"> </a> </h1>
</div><!-- end logo -->
So add a space and close the tag.
Good luck!
Bookmarks