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
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
Hi Devin,
You can have a look here http://goo.gl/lXbK2
The 2 articles are on the lower left side.
Thanks,
Thomas
Hi,
Try to add this on your custom.css or Quick CSS
.slide-image img {
height: 100%9
max-height: 228px9;
}
Cheers,
Ismael
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
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]-->
Hey!
I corrected the code – it should work now. Just insert it before the closing head tag.
Regards,
Peter
Hi Peter,
All fixed. Thank you!