diff --git src/bp-activity/admin/css/admin.css src/bp-activity/admin/css/admin.css
index 2d60dd8..9abbc2d 100644
--- src/bp-activity/admin/css/admin.css
+++ src/bp-activity/admin/css/admin.css
@@ -83,4 +83,8 @@
 	body.toplevel_page_bp-activity .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.check-column) {
 		display: table-cell;
 	}
-}
\ No newline at end of file
+}
+
+#bp-activities-form .activity-author-avatar {
+	font-weight: bold;
+}
diff --git src/bp-activity/bp-activity-admin.php src/bp-activity/bp-activity-admin.php
index 4157d6c..5a6931e 100644
--- src/bp-activity/bp-activity-admin.php
+++ src/bp-activity/bp-activity-admin.php
@@ -1393,7 +1393,7 @@ class BP_Activity_List_Table extends WP_List_Table {
 
 		<div class="alignleft actions">
 			<label for="activity-type" class="screen-reader-text"><?php _e( 'Filter by activity type', 'buddypress' ); ?></label>
-			<select name="activity_type" id="activity-type"> 
+			<select name="activity_type" id="activity-type">
 				<option value="" <?php selected( ! $selected ); ?>><?php _e( 'View all actions', 'buddypress' ); ?></option>
 
 				<?php foreach ( $activity_actions as $component => $actions ) : ?>
@@ -1614,6 +1614,15 @@ class BP_Activity_List_Table extends WP_List_Table {
 	 */
 	function column_response( $item ) {
 		// Is $item is a root activity?
+		?>
+
+		<div class="response-links">
+
+		<?php
+		// Activity permalink
+		if ( ! $item['is_spam'] ) {
+			printf( __( '<a href="%1$s" class="comments-view-item-link">View Activity</a>', 'buddypress' ), bp_activity_get_permalink( $item['id'], (object) $item ) );
+		}
 
 		/**
 		 * Filters default list of default root activity types.
@@ -1630,17 +1639,18 @@ class BP_Activity_List_Table extends WP_List_Table {
 			// If the activity has comments, display a link to the activity's permalink, with its comment count in a speech bubble
 			if ( $comment_count ) {
 				$title_attr = sprintf( _n( '%s related activity', '%s related activities', $comment_count, 'buddypress' ), number_format_i18n( $comment_count ) );
-				printf( '<a href="%1$s" title="%2$s" class="post-com-count"><span class="comment-count">%3$s</span></a>', esc_url( $root_activity_url ), esc_attr( $title_attr ), number_format_i18n( $comment_count ) );
+				printf( '<div class="activity-comment-count"><a href="%1$s" title="%2$s" class="post-com-count post-com-count-approved"><span class="comment-count comment-count-approved">%3$s</span></a></div>', esc_url( $root_activity_url ), esc_attr( $title_attr ), number_format_i18n( $comment_count ) );
 			}
 
 		// For non-root activities, display a link to the replied-to activity's author's profile
 		} else {
-			echo '<strong>' . get_avatar( $this->get_activity_user_id( $item['item_id'] ), '32' ) . ' ' . bp_core_get_userlink( $this->get_activity_user_id( $item['item_id'] ) ) . '</strong><br />';
+			echo '<div class="activity-author-avatar">' . get_avatar( $this->get_activity_user_id( $item['item_id'] ), '32' ) . ' ' . bp_core_get_userlink( $this->get_activity_user_id( $item['item_id'] ) ) . '</div>';
 		}
+		?>
 
-		// Activity permalink
-		if ( ! $item['is_spam'] )
-			printf( __( '<a href="%1$s">View Activity</a>', 'buddypress' ), bp_activity_get_permalink( $item['id'], (object) $item ) );
+		</div>
+
+		<?php
 	}
 
 	/**
