latest stable versions: v150827 (changelog)

Old Forums (READ-ONLY): The community now lives at WP Sharks™. If you have an s2Member® Pro question, please use our new Support System.

how to compatible CSS for chrome, IE8 and IE9

Home Forums Community Forum how to compatible CSS for chrome, IE8 and IE9

This topic contains 0 replies, has 1 voice. Last updated by  Jeff Harvey 4 years, 8 months ago.

Topic Author Topic
Posted: Tuesday Apr 24th, 2012 at 2:29 am #11657

– Open css from skin/frontend/default/yourstore_name/css/reset.css.

– Put below code for Chrome compatibility

@media screen and (-webkit-min-device-pixel-ratio:0) {
.new img { margin-left:128px; }
}

– For IE8 compatibility

@media screen{ .new img {
margin-left: 130px9; }
}

For IE7 compatibility

@media screen9 {
.new img {
margin-left:42px;
}
}

-For IE9 Compatibility

:root .new img { margin-left:130px /IE9; } /* IE9 */
OR
@media all and (min-width:0) {
.new img { margin-left:128px /; } /* IE9 */
}

This topic is closed to new replies. Topics with no replies for 2 weeks are closed automatically.

Old Forums (READ-ONLY): The community now lives at WP Sharks™. If you have an s2Member® Pro question, please use our new Support System.

Contacting s2Member: Please use our Support Center for bug reports, pre-sale questions & technical assistance.