@MTuttle,
If you only want to keep the/category description, you will want to modify your XML Package.
Find the following code in the entity XML Package you are using:
Code:
<xsl:value-of select="aspdnsf:EntityPageHeaderDescription($EntityName, $EntityID)" disable-output-escaping="yes" />
This code is responsible for returning the category image and description. Simply replace the code with the description. Something like this:
Code:
<xsl:value-of select="/root/EntityHelpers/Category/Entity[EntityID=$EntityID]/Description" disable-output-escaping="yes"/>
Let me know if that works out for you!
Robert