I have a hard time setting custom css styles and applying those styles because the theme keeps overriding my style.css, disregarding any changes I make. Is there any way i can disable the built in color schemer. Also, why is it that multiple style.css are downloaded? Any way to fix this?

thanks

Comments

Alan Cooney’s picture

Assigned: Unassigned » Alan Cooney
Status: Active » Fixed

Yes sure, just deleted the color folder and remove the following code from template.php:

function _phptemplate_variables($hook, $vars) {
  if ($hook == 'page') {

    // Hook into color.module
    if (module_exists('color')) {
      _color_page_alter($vars);
    }
    return $vars;
  }
  return array();
}

And the multiple style.css files are from different directories. The color module adds one, and the fluid version adds another.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.