you can do it by putting this in your index.php file of your theme:
before your post content:
<?php if ( in_category(17) ) {
echo ' <div style="display: none;">';
}
?>
after your post content:
<?php if ( in_category(17) ) {
echo ' </div>';
}
?>
replace 17 with the id number of the category you want to exclude.