Sorry about the delay guys. I'm visiting family in other cities for 3 days. No internet, because it's a village.
Frank has gave right direction, you have to go to /lib/category.class.php in order to alter category function. Search through display() function about line 454.
You want to delete space between category? Read carefully line 584-595 that construct category
PHP Code:
if($this->type_of_list=="STANDART_LIST") {
$category .= "<p>";
$category .= "$image <FONT FACE=$cat_font_face SIZE=$cat_font_size>";
$category .= "<B><A HREF=\"$cat_url\" style=\"$this->cat_link_style\">$cat_name</A></B> $html_number_of_links \n";
$category .= "$number_of_links\n";
if($this->show_description) {
if(!empty($cat_description)) $category .= "<br>";
//$category .= "<a style='font-size: 11px; color: #567E96;'>$cat_description</a>\n";
$category .= "$cat_desc \n";
}
if($this->show_subcat) $category .= "<br>";
}
To delete space between categories, just delete or edit line 585
PHP Code:
$category .= "<p>";
You may prefer to use <br> instead.