Well Its a bit messy, but I’m trying to re-engineer the meta part of the entry, so I’ll be using it in a few places like
<a class="activity-avatar" title="<?php echo bp_core_get_username( bp_activity_user_id() ); ?>"
href="<?php bp_activity_user_link() ?>" title="user name here">
<?php bp_activity_avatar( 'type=full&width=40&height=40' ) ?>
</a>
To add the username as a title on the Avatar, so it shows on mouseover. And
<?php if ( bp_activity_has_content() ) : ?>
<a class="author" href="<?php bp_activity_user_link() ?>"><?php echo bp_core_get_username( bp_activity_user_id() ); ?> said: </a>
<?php bp_activity_content_body() ?>
<?php endif; ?>
As a prefix to the post content. Then I’m moving the rest of the meta data to the bottom of the post so I can drop the opacity of it since its less important.