Last active
December 24, 2015 16:19
-
-
Save hkirsman/6827293 to your computer and use it in GitHub Desktop.
Drupal lte-ie-8.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function THEME_preprocess_html(&$vars) { | |
drupal_add_css(drupal_get_path('theme', 'THEME') . '/css/lte-ie8.css', array( | |
'group' => 9999, | |
'weight' => 9999, | |
'browsers' => array( | |
'IE' => 'lte IE 8', | |
'!IE' => FALSE | |
), | |
'preprocess' => FALSE, | |
'every_page' => TRUE, | |
)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment