I thought this would be similar to a function i wrote once for the body classes, but no joy.
//filter thematic_post_class to add clearfix
function clearfix_post($c){
$c[] = 'clearfix';
return $c;
}
add_filter('thematic_post_class','clearfix_post');
any reason why the above should add "clearfix" to the post class?