Brilliant! Thanks very much for that. The actual code that I got down to was:
<?php
if (in_category(1)) //cat1 = most normal posts
{ ?>
<div id="postHolder">
<h2><?php the_title()?></h2>
<h3><?php the_date()?></h3>
<?php the_content();?>
</div>
<?php } else { ?>
<div id="linkHolder">
<?php the_content();?>
</div>
<?php
}
?>
Once again, many thanks tsguitar.