Image width issue in IE [closed]

The issue was related to width: 100%; being applied by WordPress to all images. The code below fixes this issue – i applied this only to IE 8 and lower, as these are the browsers that have issues with the code.

img.size-full, img.size-large, img.header-image, img.wp-post-image {
    max-width: none !important;
}