I'm loading up the css3-mediaqueries.js library to get media queries working in IE7 and 8.
To fix some CSS bugs in IE7, I'm also running a conditional stylesheet block, like so:
<!--[if IE 7]>
...
<![endif]-->
The problem is that the css3-mediaqueries.js seems to do its job a bit too good actually. It will overwrite anything in my conditional css block, possible because it kicks in just a bit later that the parsing of the CSS.
I've tried linking up the .js file at the bottom of my page but that didn't have any effect. Does anyone have an idea on how to solve this?