Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I am trying to use wp-minify to minify my js/css on the fly. I can get the 'direct' css files to be minified, but I can't seem to get wp-minify to minify the 'linked' css files. My theme is a child theme off of twenty-ten, so my child theme's styles.css gets minified, but not twenty-ten's styles file.

share|improve this question
1  
@import and parallel downloades don't work. – kaiser Jul 12 '11 at 0:55
@kaiser If you make your comment the answer, I'll mark it as the answer. – Avery Chan Jul 13 '11 at 20:40
Done & Thanks... – kaiser Jul 14 '11 at 0:46

1 Answer

up vote 1 down vote accepted

@import prevents "parallel" downloads. I'd not suggest to use it in case you want to minify css files.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.