Right, the activity stream templates is what you would have to edit in order to change the size, and there is quite a few of them to change.
If you look in your customavatar table, you will see that the height is set to 60
This is controlled by the class_core.php file when you load a avatar to the site.
So in order to change this, without doing a query, and a file edit, is to edit each template for the activity stream, and find something like this.
Code:
<img src="{vb:raw userinfo.avatarurl}" alt="{vb:rawphrase xs_avatar, {vb:raw userinfo.username}}" />
And change it to this.
Code:
<img width="100px" height="100px" src="{vb:raw userinfo.avatarurl}" alt="{vb:rawphrase xs_avatar, {vb:raw userinfo.username}}" />
Of course changing 100px to your liking.