« See all FAQs for Travel Island - Responsive JigoShop e-Commerce WordPress Theme
Images do not display in IE8
Please go to appearance> editor and change this code:
.fancy_image{
display:inline-block;
padding:5px;
background:#cce6fc;
border-radius:5px;
max-width: 100%;
}
.fancy_image img{
max-width:100% !important;
display:block;
/*height: 100%;*/
height: auto;
}
to this code:
.fancy_image{
display:inline-block;
padding:5px;
background:#cce6fc;
border-radius:5px;
}
.fancy_image img{
display:block;
/*height: 100%;*/
height: auto;
}
(ie: remove the max-width:100% entries)


