Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save About2git/5502127 to your computer and use it in GitHub Desktop.
Save About2git/5502127 to your computer and use it in GitHub Desktop.
Drupal: Replace jQuery UI Theme Function in template.php
/**
* implements hook_css_alter()
*/
function YOURTHEMENAME_css_alter(&$css) {
// Installs the jquery.ui themeroller theme to the theme.
if (isset($css['misc/ui/jquery.ui.theme.css'])) {
$css['misc/ui/jquery.ui.theme.css']['data'] = drupal_get_path('theme', 'YOURTHEMENAME') . '/css/jquery-ui.custom.min.css';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment