I'm using the YAML for Drupal CSS framework (http://www.yaml-fuer-drupal.de/de/download). As already stated by hass in msg #105 and #107 on http://drupal.org/node/228818 the module does not work because the theme alters the css array and regenerate + alters the styles output.

I just added a call to the IE Unlimited CSS Loader module at the end of yaml_preprocess_page and everything runs smoothly. No IE problems are visible any more.

function yaml_preprocess_page(&$vars) {
   ...

  unlimited_css_preprocess_page($vars);
}

HTH

Comments

ademarco’s picture

Yes, that's unfortunately the way to use the module in case another hook_preprocess_page() runs after the module's one. I'll add it in the documentation. Thanks for reporting.