|
@@ -149,7 +149,7 @@ function bones_scripts_and_styles() {
|
|
|
// source: http://code.garyjones.co.uk/ie-conditional-style-sheets-wordpress/
|
|
// source: http://code.garyjones.co.uk/ie-conditional-style-sheets-wordpress/
|
|
|
function bones_ie_conditional( $tag, $handle ) {
|
|
function bones_ie_conditional( $tag, $handle ) {
|
|
|
if ( 'bones-ie-only' == $handle )
|
|
if ( 'bones-ie-only' == $handle )
|
|
|
- $tag = '<!--[if lte IE 9]>' . "\n" . $tag . '<![endif]-->' . "\n";
|
|
|
|
|
|
|
+ $tag = '<!--[if lt IE 9]>' . "\n" . $tag . '<![endif]-->' . "\n";
|
|
|
return $tag;
|
|
return $tag;
|
|
|
}
|
|
}
|
|
|
|
|
|