Website not functioning correctly in IN

Our Home and Who we are pages are not working correctly in IE. Can you tell us what the issue is and help us resolve this please.

Hi There,

Thank you for writing in, that is a bug in IE where it does not support the max-width: 100%; we apply on images. With that property, images should respond to its parent div’s width, but it’s not on IE. To fix this issue please add the following custom CSS to Theme Options > CSS

/*image and card fix on IE*/
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
   .x-face-graphic img,
   .x-image img {
   	width: 100% !important;
   }
}

Hope it helps,
Cheers!

3 Likes

Thanks, this fix the issue.

You’re welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.