I have a IE hack problem where I need to add media queries specifically for IE7(IE8 is working fine). I am using respond.js also. So when i do something like this:
<!--[if IE]>
<style rel="stylesheet" type="text/css">
@media screen and (max-width:500px){
.abc{width: 100px !important;}
}
</style>
<![endif]-->
IE7 doesnot understand it. Please suggest. Thanks in advance.