Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Images Being Squashed When Viewed In IE8

Im working on a new website, http://blgz.co/, and for some weird reason, all my images are being squeezed!!!!!. I have spent the last few hours trying to solve the problem to no avail. Any help would be great! Thanks.

like image 958
George Milonas Avatar asked Dec 04 '22 17:12

George Milonas


1 Answers

Can't figure out why you're adding the max-width declaration to your global img tag. Remove that and all your images will flow normally:

img {
    height: auto;
    max-width: 100%; /* remove */
}
like image 91
Andres Ilich Avatar answered Dec 23 '22 11:12

Andres Ilich