Thank you Otto.
My second question wasn’t very explicit i guess. “Summer” (id 5) and “Winter”(id 6) are child categories of “Activities” and i want to list them on the “Activities” template page, both with description or better, with latest post excerpt in sub-category.
I put this in “Activities” category template
<?php wp_list_categories(‘include=5&title_li=’); ?>
<?php echo category_description(5); ?>
<?php wp_list_categories(‘include=6&title_li=’); ?>
<?php echo category_description(6); ?>
but it shows only the category description. Where the category link should be i only get “No categories”.