I have managed to work it out.
1. I copied the code from 2010's category.php
2. In my themes function.php i then created a function (just commenting out the original code);
function ekg_category_meta() {
echo '<h1 class="page-title">';
printf( __( 'Category Archives: %s' ), '<span>' . single_cat_title( '', false ) . '</span>' );
?></h1>
<?php
//$category_description = category_description();
//if ( ! empty( $category_description ) )
//echo '<div class="archive-meta">' . $category_description . '</div>';
/* Run the loop for the category page to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-category.php and that will be used instead.
*/
}
add_action('thematic_page_title', 'ekg_category_meta');?>
3. Then added my own code to functions.php;
<?php
function category_disc_display() { ?>
<div class="catdesc"><?php echo category_description( $category ); ?></div>
<?php }
add_action('widget_area_primary_aside', 'category_disc_display'); ?>
This allowed me to move (Hook) the category description to any where i wanted in the theme