Hello, first open index.php and find:
PHP:
// Determine the category skin and meta data
if ($TMPL['cat_exist']) {
Add this after:
PHP:
$TMPL['cat_desc'] = $CONF['categories'][$TMPL['cat_exist']]['cat_desc'];
(This code will be included in 0.7 so you dont need to re-apply it when you upgrade)
Then open wrapper template and add:
{$cat_exist} {$cat_desc}
just before the {$content} tag
This can also be done via a plugin for added styling possibilities. I will add the creation of this plugin to our todo list