10/19/2011
Reading time: 1 mins
Reading time: 1 mins
Remove unnecessary css from drupal website
To remove unwanted-style.css from current website do the following in your template.php
function MYTHEME_css_alter(&$css){
unset($css['sites/all/themes/MYTHEME/css/unwanted-style.css']);
}
Where MYTHEME will be your theme name.