Nice looking site.
Drop this between your ul tags:
<?php
$args=array(
'orderby' => 'name',
'order' => 'ASC'
);
$categories=get_categories($args);
foreach($categories as $category) {
echo '<p>CATEGORY NAME OR WHAT EVER GOES HERE <br /> <a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> </p> ';
echo '<p> DESCRIPTION OR WHATEVER GOES HERE:'. $category->description . '</p>';
echo '<p> NUMBER OF POST HEADING OR WHATEVER GOES HERE: '. $category->count . '</p>'; }
?>
Please let me know how this works out.
DemetriusPop ~