Ok just to let people help some more:
the minification (dunno if the word exists but...) is done on line 295 of /libs/IncludeCssJs.php
PHP Code:
$sCode .= JSMin::minify(file_get_contents($sFile)); // minify files
but i think you need to hack the JSmin, or there must be some sort of escape character
i think the error lies in the fact that its made for compressing JS so it sees
Code:
#journal_posts .post_form input
as which will result in and respectively
Code:
#journal_posts.post_form input
i think there are two solutions to fix this and that would be:
1 Hack the JSmin library
2 Do something like this:
Code:
#journal_posts div.post_form input
Edit: This might also work for every .post_form, but dont know how that will be compressed
Code:
#journal_posts *.post_form input
Bookmarks