Something appears to be dropping my links to css files. Any ideas for me?
Permalink
Second, it /appears/ that there's a c5 bug due to your use of a . in the theme name (arrowheadautosf.com).
Can you:
1. Copy /concrete/tools/css.php to /tools/css.php
2. Open /tools/css.php and find instances of "str_replace('-','_', $au->theme)" (for me they are on lines 22 and 25, but might vary for you)
3. Replace that snippet (ie, leave rest of line alone) with:
str_replace(array('-', '.'),'_', $au->theme)
4. Clear cache for good measure and test.
James