In the avatars pluging docs it says to add this to show the blog avatar:
<?php echo get_blog_avatar(1,’32’,’identicon’:wink:; ?>
That’s probably not what you want because it will always show the avatar for blog 1. Here is what you probably want:
<?php echo get_blog_avatar($wpdb->blogid, ’32’, ‘identicon’:wink:; ?>