• Hi all,

    I’m in the final stages of development of the following site:

    https://www.harmonyreins.com.au/

    Everything looks good at my end (Mas OS 10.6) in Firefox, Chrome and Safari. Unfortunately I’m getting complaints from the client about not being able to see the header images (each page has a unique photo as its header) in Internet Explorer.

    I don’t have a Windows machine (just yet), but does anyone know off the top of their head what might be causing this? The code I’m using to pull the images in is:

    <img src="<?php bloginfo('template_directory'); ?>/images/meetthegang-banner.jpg" alt="Two Horses In A Field" width="918" height="" style="border: 1px solid #aaa;" />

    Cheers,

    Chris

Viewing 8 replies - 1 through 8 (of 8 total)
  • I am able to see the images in chrome, but receive the following errors in internet explorer:

    Webpage error details

    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MALN; InfoPath.3; .NET4.0C; .NET4.0E)
    Timestamp: Thu, 17 Mar 2011 10:40:03 UTC

    Message: Object doesn’t support this property or method
    Line: 4821
    Char: 5
    Code: 0
    URI: https://www.harmonyreins.com.au/wp-includes/js/prototype.js?ver=1.6.1

    Message: ‘jQuery.easing’ is null or not an object
    Line: 1
    Char: 1
    Code: 0
    URI: https://www.harmonyreins.com.au/wp-content/plugins/uBillboard/js/jquery.easing.js?ver=3.1

    Message: Object doesn’t support this property or method
    Line: 25
    Char: 264
    Code: 0
    URI: https://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js?ver=3.1

    this is in the html code of the front page:

    <div id="slideshow">
    
    <img src="https://www.harmonyreins.com.au/wp-content/themes/harmonyreins/images/home-banner.jpg" alt="home-banner" width="" height="" style="border: 1px solid #aaa;" />
    
    </div>

    the width="" height="" are not specified – try to add the number values or delete the empty tags.

    Take a look at this. https://coolwebdeveloper.com/tag/null-is-null-or-not-an-object-javascript-error/ It looks like the errors are basically saying that you are loading both the prototype and jquery libraries, and you’ve got a conflict.

    Thread Starter Chris H

    (@chris-h)

    Thanks everyone. The image width was already specified on the home page, but the height was not. If someone could let me know if the image is working now, I’d really appreciate it. Otherwise, I’ll continue looking into the suggestion that jeezyo posted.

    Cheers,

    Chris

    still no image in IE7; and the tags are still empty:

    <div id="slideshow">
    
    <img src="https://www.harmonyreins.com.au/wp-content/themes/harmonyreins/images/home-banner.jpg" alt="home-banner" width="" height="" style="border: 1px solid #aaa;" />
    
    </div>

    what is the code within this #slideshow div?

    screenshot: https://img51.imageshack.us/i/ieprobd.jpg/
    the little dot is the image – it is not that IE does not find the image, it seems to compress it to a very small size.

    Thread Starter Chris H

    (@chris-h)

    Here’s the code with the “slideshow” div:

    <div id="slideshow">
    
    <img src="<?php bloginfo('template_directory'); ?>/images/meetthegang-banner.jpg" alt="Two Horses In A Field" width="918" height="249" style="border: 1px solid #aaa;" />
    
    </div>

    Thanks for taking the time to help with this. I really appreciate it. ??

    something in your site is changing this code of the ‘slideshow’ div into what ends up in the browser, which i posted in my last reply (it is the same in Firefox3.6 and IE7)

    it changes the image url, the alt text, the width and height ……

    is the slideshow planned to show multiple images?
    using javascript or jQuery?

    Thread Starter Chris H

    (@chris-h)

    It was, but I got rid of it (client couldn’t see it on her machine), and didn’t bother renaming the div.

    I’ve just had a text from the client to tell me that the image on the ‘Meet The Gang’ page just started working. This was the one I added the width and height parameters to, so I’ve added this info to all of the other images and they now appear to be working. Thanks to everyone for their help.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Theme Images In Internet Explorer’ is closed to new replies.