Configure template.php file for Color module integration.

/**
 * Override or insert variables into the html template.
 */
function corporateclean_process_html(&$vars) {
  // Hook into color.module
  if (module_exists('color')) {
    _color_html_alter($vars);
  }
}

/**
 * Override or insert variables into the page template.
 */
function corporateclean_process_page(&$variables) {
  // Hook into color.module.
  if (module_exists('color')) {
    _color_page_alter($variables);
  }
 
}

Comments

gtsopour’s picture

Status: Active » Fixed

Configured and committed.

/George

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