Results 1 to 4 of 4

Thread: Header Graphic not showing in Internet Explorer

  1. #1
    Join Date
    Jan 2010
    Posts
    15
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Unhappy Header Graphic not showing in Internet Explorer

    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
    Last edited by danielmeade; 01-04-2010 at 10:47 PM.

  2. #2
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    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!

  3. #3
    Join Date
    Jan 2010
    Posts
    15
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks Snookerman! Something so simple and yet sorted it out!
    Really appreciate the fast reply.

    Daniel

  4. #4
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    Sure thing! In the future, try to always run your page through a validator, it will pick up on errors like that one.

    Happy coding!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •