чтобы убрать добавьте в файл template.php вашей темы добавить следующие строки:
-
<?php
-
/*
-
Do not include drupal's default style sheet in this theme !
-
*/
-
function phptemplate_stylesheet_import($stylesheet, $media = 'all') {
-
return theme_stylesheet_import($stylesheet, $media);
-
}
-
}
-
?>
чтобы заменить на другой (например, для того, чтобы затруднить опознание вашей CMS) в файл template.php вашей темы добавить следующие строки:
-
<?php
-
function phptemplate_stylesheet_import($stylesheet, $media = 'all') {
-
}
-
return theme_stylesheet_import($stylesheet, $media);
-
}
-
}
-
?>
информация взята отсюда...