I am using with Omega 3.0. Images placed with Media Module and Responsive display type. Images display fine in Chrome, all manners of Firefox and IE7 & IE9. IE8 stretches the images vertically approximately 200% in native mode. Switching to compatibility mode fixes the issue. As a quick fix I added <meta http-equiv=”X-UA-Compatible” content=”IE=EmulateIE7″ /> to html.tpl.php.
Comments
Comment #1
kingfisher64 commentedisn't
height: autorequired?Comment #2
ressaUsing CKeditor WYSIWYG and Media to insert images, height and width was being defined in the image tag, overriding the important
img { height: auto }.Adding
img { height: auto !important }to my stylesheet fixed it for me, so I didn't need to install this module.Comment #2.0
ressaAdded code tag to meta example