bigspring / monolith

A starter theme for WordPress built with Twitter Bootstrap
MIT License
9 stars 1 forks source link

IE conditionals in header not covering all use cases #253

Closed dmseaton closed 9 years ago

dmseaton commented 9 years ago

In cases such as this:

<!--[if lt IE 9]>
<link href="<?= get_asset_uri('css', 'ie') ?>" rel="stylesheet" type="text/css">
<![endif]-->

The requested stylesheet/scripts are not being called in IE9. Determine the highest version of IE that requires placeholder and adjust accordingly.

Consider using an (IE catchall)[http://www.quirksmode.org/css/condcom.html] like "<!--[if IE]>" if required.

dmseaton commented 9 years ago

fixed because it was quick.