Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #23569

    Hi,

    With IE8, the featured image of a blog post does not show correctly in a blog posts element, they are stretched vertically.

    Layout element 1/2, blog post config : grid style, columns 2, excerpt with read more, 2 posts, no pagitation.

    Looks OK with IE10 and FF.

    How can I solve this ?

    Thanks,

    Thomas

    #120330

    Hi Thomas,

    Can we take a look at the page with the posts live? It is probably a nesting issue and IE8 is having an issue with max width or width but it will help to see it live and inspect the code.

    Regards,

    Devin

    #120331

    Hi Devin,

    You can have a look here http://goo.gl/lXbK2

    The 2 articles are on the lower left side.

    Thanks,

    Thomas

    #120332

    Hi,

    Try to add this on your custom.css or Quick CSS

    .slide-image img {
    height: 100%9
    max-height: 228px9;
    }

    Cheers,

    Ismael

    #120333

    Hi Ismael.Added the code to quick css but I don’t see any difference. Also tried in custom.css but still no luck.

    Any thoughts?

    Thanks,

    Thomas

    #120334

    I’d use a conditional: http://www.quirksmode.org/css/condcom.html instead – add following code to header.php (before the closing head tag):

    <!--[if lt IE 9]>
    <style>
    .slide-image img {
    height: 100%;
    max-height: 228px;
    }
    </style>
    <![endif]-->

    #120338

    Hey!

    I corrected the code – it should work now. Just insert it before the closing head tag.

    Regards,

    Peter

    #120339

    Hi Peter,

    All fixed. Thank you!

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘IE8 : featured posts image in blog posts element not cropped correctly’ is closed to new replies.