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.
19/10/2011
2 min read
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.