Viewing 8 replies - 1 through 8 (of 8 total)
  • Try adding this to your theme’s stylesheet or custom CSS:

    <!--[if lte IE 8]>
    .testimonial img {
    	max-width: auto !important;
    }
    <![endif]-->

    Thread Starter astoll

    (@astoll)

    Hi Chris,

    Many thanks for your quick reply. I’ve added your suggested text at the end of the style.css file found in my wp-content/themes/contango dir but it doesn’t seem to make any difference (on my machine at least).

    I’ve also tried adding the bit without the if/endif, but that had no effect either.

    Have I done this right?

    Sorry, that was my fault. I had compatibility mode on. Try this:

    .testimonial img {
    	width: auto;
    }

    without the if/endif.

    Thread Starter astoll

    (@astoll)

    Chris – BINGO! That worked, excellent, thank you.

    I still don’t have pictures displayed in the widget though for some reason??? Not the end of the world though!

    Thanks, Andy

    Is “Show Images?” checked in the widget settings?

    Thread Starter astoll

    (@astoll)

    Yes, and they show up fine in Chrome.

    Try:

    .testimonial-widget img {
    	width: auto;
    }

    or combine the two:

    .testimonial img,
    .testimonial-widget img {
    	width: auto;
    }

    Thread Starter astoll

    (@astoll)

    That has fixed it.

    MANY THANKS for all your swift support – it’s very much appreciated.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Pictures not displaying correctly in IE’ is closed to new replies.