Finally! This module is a great idea, and long overdue - thanks for tackling this problem!

Unfortunately, I can't get it to work with the ATCK theme, even with the Color module disabled. I'm not using the Conditional Stylesheet module; there is a main page-layout.css in the theme with conditional calls to IE6 and 7 stylesheets in head, as well as a call to a main style.css - perhaps this is more complex than average.

I'll keep an eye out for updates - this would be a real timesaver! Thanks again... keep up the good work.

Comments

ademarco’s picture

Hi,

it is the same situation like #469864: Not working for yaml CSS framework. One solution could be to add these lines in atck_preprocess_page() in the theme's template.php:

function atck_preprocess_page($vars) {
  ...
  if(module_exists('unlimited_css')) {
    unlimited_css_preprocess_page($vars);
  }
  ...
}

But it didn't worked also because $vars is not passed by reference, apparently... I'll have a better look.

bcobin’s picture

Thank you, Antonio - much appreciated!

donquixote’s picture

donquixote’s picture

Title: Not working with ATCK » Make ATCK work with unlimited_css, or provide a custom solution for the IE 31 stylesheet problem.
Project: IE Unlimited CSS Loader » Advanced Theme Construction Kit (ATCK)
Version: 6.x-1.1 » 6.x-6.0
Component: Theme Compatibility » Miscellaneous
Category: support » feature

I think this is an atck issue.