Reply To: IE8

#1110
livemesh
Keymaster

I am releasing an update right now for the IE8 issues. Following changes were made to IE8.css file in addition to the one posted in an earlier post above. No need to have the above change I sent earlier –

#container { min-width: 1180px;} /* New change */

#content .contact-form LABEL { 
    display: block !important;
}

Regarding the portfolio image overflowing to the sidebar, this is a tricky IE8 issue which can be fixed like below –

.single-portfolio .entry-content img, .single-post .entry-content img {
    max-width: 100%; height: auto; width: auto;
}

but I am not going to make this part of the update since max-width: 100% can cause trouble in certain places where images can disappear or become shrunk in IE8. I leave it upto individual sites to tweak their code to suit their requirements. If you do not want to apply this CSS change, you always have a choice making sure the images are equal to or less than the max size of its container which will prevent the overflow. Thanks.