1. The subcategory count works the same as SMF but is only for normal galleries and not user galleries.
To remove the picture totals for user galleries
Open Themes/default/UserGallery.template.php
Find
[Code]
// Show total pictures in the category
echo '<td align="center">', $totalpics, '</td>';
Change to
// Show total pictures in the category
echo '<td align="center"> </td>';
2. To customize the main index would require you to edit Gallery.template.php from there you can look in the template_main function and look into moving the user gallery link
[/code]