• hi guys,
    The theme works perfectly in chrome and firefox, however the thumbnail images just vanished while browsing with IE8. Is this issue related to HTML5?
    My site url is seodug.com
    Any help will be appreciated, thanks in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter no1se

    (@no1se)

    well, it has something to do with the following CSS
    .entry-thumbnail img{max-width:100%;}

    if I manually change the CSS code to the following kind, then the images finally appear.
    .entry-thumbnail img{max-width:none!important;}

    however IE9 dont work the way above… Im so desperated

    browser compatiblity (specially IE series) is such a bitch.

    Theme Author Konstantin Kovshenin

    (@kovshenin)

    Will put IE8 in the roadmap for a future update. Thanks for letting me know!

    thx Kov for your work and congratulations for your first WordCamp Russia 🙂
    As far as I know this is a IE8 bug, you can find details at Using max-width on images can make them disappear in IE8

    @no1se you could temporary use a css hack targeting IE8 and below:
    .entry-thumbnail img {

    max-width: 100%;
    max-width: none\9; /* IE8 and below */

    }
    but it would be definitely better to include a specific IE8 css with conditional comments.
    Greetings from Italy

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘cannot display thumbnail images in IE8’ is closed to new replies.