Certainly! From your thesis folder, go into lib/classes/head.php and look for:
PHP Code:
function stylesheets() {
global $thesis;
// Main stylesheet
// $date_modified = filemtime(TEMPLATEPATH . '/style.css');
// $styles['core'] = array(
// 'url' => get_bloginfo('stylesheet_url') . '?' . date('mdy-Gms', $date_modified),
// 'media' => 'screen, projection'
// );
// $date_modified = filemtime(THESIS_LAYOUT_CSS);
// $styles['layout'] = array(
// 'url' => get_bloginfo('template_url') . '/layout.css?' . date('mdy-Gms', $date_modified),
// 'media' => 'screen, projection'
// );
// $styles['ie'] = array(
// 'url' => THESIS_CSS_FOLDER . '/ie.css',
// 'media' => 'screen, projection'
// );
// Custom stylesheet, if applicable
if ($thesis['style']['custom']) {
if (file_exists(THESIS_CUSTOM . '/custom.css'))
$date_modified = filemtime(THESIS_CUSTOM . '/custom.css');
$styles['custom'] = array(
'url' => THESIS_CUSTOM_FOLDER . '/custom.css?' . date('mdy-Gms', $date_modified),
'media' => 'screen, projection'
);
}
Comment out the lines for those CSS files you don't want (in orange above).I just copied all that CSS stuff into my own custom css. Also, I copied a few images from theses/images to thesis/custom/images. That way I didn't have to bother adjusting all the URLs in the thesis core css files.
Bookmarks