The following code allows you to modify the intro text on specific Category archives in Thesis
function thesify_category_intro( $output )
{
// set intro for featured category
if( is_category( 'featured' ) )
$output = '<h1>Featured Posts</h1>';
// set intro for tutorials category
elseif( is_category( 'tutorials' ) )
$output = '<h1>Tutorials</h1>';
// return the default if not on featured or tutorials
return $output;
}