Hi,
To remove the indication of the number of elements in the category, you have to disable the option "Show the number of products" in the menu/module settings.
If you want to display the number of products but not when empty, so you can hide empty categories still in the settings, or do a view edition on "category / listing_div" for example and replace:
if($this->params->get('number_of_products',0)){
echo ' ('.$child->number_of_products.')';
}
By:
if($this->params->get('number_of_products',0) && $child->number_of_products != 0){
echo ' ('.$child->number_of_products.')';
}