Skip to content

Instantly share code, notes, and snippets.

@jeanadev
Created May 18, 2012 20:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeanadev/2727330 to your computer and use it in GitHub Desktop.
Save jeanadev/2727330 to your computer and use it in GitHub Desktop.
load only one css - drupal
<?php
if(strstr($_SERVER['REQUEST_URI'], "signage")) {
drupal_static_reset('drupal_add_css');
drupal_add_css(path_to_theme() . '/css/signage.css', array('group' => CSS_THEME, 'every_page' => true, 'weight' => 9999));
}
// Thank you http://leepowers.net/drupal-css-load-order
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment