• I’ve tried to find the problem on my photoblog with the image hanging and it looks like a “thumbnail” instead of loading the entire image. I’ve tested it in Firefox and this problem doesn’t occur. I’ve checked and validated the site and it’s valid xhtml 1.o transitional.

    When I remove my cache and surf between photographs for the first time is when the photo hangs in IE.

    I’ve just recently upgraded toWP 1.5.1 and made changes to the Kubrick theme to make my site look the way it is. I did have problems with my host for a few days but things seem to have stabilized now but I still can’t find what the problem is with IE 6.0.

    Can anyone help?

    https://www.alapan.com/blog/

    Thank you in advance.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The problem is with using max-width on your images, which is a CSS2 property and not supported in IE. This page may help in figuring a solution:

    https://www.svendtofte.com/code/max_width_in_ie/

    Thread Starter agi

    (@agi)

    Thank you Kafkaesqui. You headed me in the right direction. Although I couldn’t figure it out with the link you helpfully provided (I’m a newbie at this), I came across this fix which seems to be working:

    .post img
    {
    max-width: 100%;
    width: expression(Math.min(document.body.clientWidth, this.width) > 700 ? “700px”: Math.min(document.body.clientWidth, this.width));
    }

    In addition, there is also a javascript that worked but I removed it after finding above at doxdesk:

    <script type=”text/javascript” src=”minmax.js”></script>

    Thank you!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Image Hanging in IE’ is closed to new replies.