Here is what we did to fix the problem.
In the category template
<div class=”PostContent” style=”padding-top:0px;”>
<?php the_excerpt() ?>
</div>
was changed to
<div class=”PostContent” style=”padding-top:0px;”>
<?php the_content(‘Read the rest of this post »’); ?>
</div>
Lloy