View Full Version : Resolved Header Graphic not showing in Internet Explorer
danielmeade
01-04-2010, 10:16 PM
Hi guys,
I'm having a little trouble getting the image contained within the header of my site to show in Internet explorer. It seems to work in all other major browsers but simply does not show in IE.
Any ideas on what I need to do to rectify this?
Thanks for your help!
Site Url: http://danielmeade.net
Snookerman
01-04-2010, 10:33 PM
You have errors in your code, and IE probably chokes on them. Fix them and see if it helps:
<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:
<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!
danielmeade
01-04-2010, 10:43 PM
Thanks Snookerman! Something so simple and yet sorted it out!
Really appreciate the fast reply.
Daniel
Snookerman
01-04-2010, 10:51 PM
Sure thing! In the future, try to always run your page through a validator (http://validator.w3.org/check?uri=http%3A%2F%2Fdanielmeade.net), it will pick up on errors like that one.
Happy coding!
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.