UserThomas wrote:It has to do with the custom.css file you have been helping me on. The browser only accepts some of the settings.
Ex: it does accept the color changes but it does not accept the code to move the right column to the left side.
Hi Thomas,
I found out what the issue is with IE 8. The reason is that IE 8 does not have support for media queries and thus all the styles in the custom.css which are wrapped in a "media screen and .." are not recognized. You can fix this by including the css with the @Html.AddCssParts html helper in the Head.cshtml view or by placing the styles which are wrapped in the "media" query in a Themes/Allure/Content/css/ie8-fix.css file.
So if you have the following in the custom.css
@media screen and (min-width: 1001px){
.product-details-page .overview {
margin-left: 620px;
margin-right: 0;}
}
@media screen and (min-width: 769px){
.ui-tabs, .gallery {
float: left;}
}
@media screen and (min-width: 769px){
.product-details-page .overview {
float: right;}
}
place the following in the ie8-fix.css
.product-details-page .overview {
margin-left: 620px;
margin-right: 0;
}
.ui-tabs, .gallery {
float: left;
}
.product-details-page .overview {
float: right;
}
Hope that helps!
Best Regards!