Index: src/bp-groups/bp-groups-admin.php
===================================================================
--- src/bp-groups/bp-groups-admin.php	(revision 11715)
+++ src/bp-groups/bp-groups-admin.php	(working copy)
@@ -580,13 +580,13 @@
 	do_action_ref_array( 'bp_groups_admin_edit', array( &$group ) ); ?>
 
 	<div class="wrap">
-		<h1><?php _e( 'Edit Group', 'buddypress' ); ?>
+		<h1 class="wp-heading-inline"><?php _e( 'Edit Group', 'buddypress' ); ?></h1>
 
-			<?php if ( is_user_logged_in() && bp_user_can_create_groups() ) : ?>
-				<a class="add-new-h2" href="<?php echo trailingslashit( bp_get_groups_directory_permalink() . 'create' ); ?>"><?php _e( 'Add New', 'buddypress' ); ?></a>
-			<?php endif; ?>
+		<?php if ( is_user_logged_in() && bp_user_can_create_groups() ) : ?>
+			<a class="page-title-action" href="<?php echo trailingslashit( bp_get_groups_directory_permalink() . 'create' ); ?>"><?php _e( 'Add New', 'buddypress' ); ?></a>
+		<?php endif; ?>
 
-		</h1>
+		<hr class="wp-header-end">
 
 		<?php // If the user has just made a change to an group, display the status messages. ?>
 		<?php if ( !empty( $messages ) ) : ?>
@@ -752,18 +752,18 @@
 	do_action( 'bp_groups_admin_index', $messages ); ?>
 
 	<div class="wrap">
-		<h1>
-			<?php _e( 'Groups', 'buddypress' ); ?>
+		<h1 class="wp-heading-inline"><?php _e( 'Groups', 'buddypress' ); ?></h1>
 
-			<?php if ( is_user_logged_in() && bp_user_can_create_groups() ) : ?>
-				<a class="add-new-h2" href="<?php echo trailingslashit( bp_get_groups_directory_permalink() . 'create' ); ?>"><?php _e( 'Add New', 'buddypress' ); ?></a>
-			<?php endif; ?>
+		<?php if ( is_user_logged_in() && bp_user_can_create_groups() ) : ?>
+			<a class="page-title-action" href="<?php echo trailingslashit( bp_get_groups_directory_permalink() . 'create' ); ?>"><?php _e( 'Add New', 'buddypress' ); ?></a>
+		<?php endif; ?>
 
-			<?php if ( !empty( $_REQUEST['s'] ) ) : ?>
-				<span class="subtitle"><?php printf( __( 'Search results for &#8220;%s&#8221;', 'buddypress' ), wp_html_excerpt( esc_html( stripslashes( $_REQUEST['s'] ) ), 50 ) ); ?></span>
-			<?php endif; ?>
-		</h1>
+		<?php if ( !empty( $_REQUEST['s'] ) ) : ?>
+			<span class="subtitle"><?php printf( __( 'Search results for &#8220;%s&#8221;', 'buddypress' ), wp_html_excerpt( esc_html( stripslashes( $_REQUEST['s'] ) ), 50 ) ); ?></span>
+		<?php endif; ?>
 
+		<hr class="wp-header-end">
+
 		<?php // If the user has just made a change to an group, display the status messages. ?>
 		<?php if ( !empty( $messages ) ) : ?>
 			<div id="moderated" class="<?php echo ( ! empty( $_REQUEST['error'] ) ) ? 'error' : 'updated'; ?>"><p><?php echo implode( "<br/>\n", $messages ); ?></p></div>
Index: src/bp-members/classes/class-bp-members-admin.php
===================================================================
--- src/bp-members/classes/class-bp-members-admin.php	(revision 11715)
+++ src/bp-members/classes/class-bp-members-admin.php	(working copy)
@@ -942,23 +942,24 @@
 		<?php endif; ?>
 
 		<div class="wrap" id="community-profile-page">
-			<h1><?php echo esc_html( $title ); ?>
+			<h1 class="wp-heading-inline"><?php echo esc_html( $title ); ?></h1>
 
-				<?php if ( empty( $this->is_self_profile ) ) : ?>
+			<?php if ( empty( $this->is_self_profile ) ) : ?>
 
-					<?php if ( current_user_can( 'create_users' ) ) : ?>
+				<?php if ( current_user_can( 'create_users' ) ) : ?>
 
-						<a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add New', 'user', 'buddypress' ); ?></a>
+					<a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add New', 'user', 'buddypress' ); ?></a>
 
-					<?php elseif ( is_multisite() && current_user_can( 'promote_users' ) ) : ?>
+				<?php elseif ( is_multisite() && current_user_can( 'promote_users' ) ) : ?>
 
-						<a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add Existing', 'user', 'buddypress' ); ?></a>
+					<a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add Existing', 'user', 'buddypress' ); ?></a>
 
-					<?php endif; ?>
-
 				<?php endif; ?>
-			</h1>
 
+			<?php endif; ?>
+
+			<hr class="wp-header-end">
+
 			<?php if ( ! empty( $user ) ) :
 
 				$this->profile_nav( $user, 'BuddyPress' ); ?>
@@ -1918,25 +1919,26 @@
 		?>
 
 		<div class="wrap">
-			<h1><?php _e( 'Users', 'buddypress' ); ?>
+			<h1 class="wp-heading-inline"><?php _e( 'Users', 'buddypress' ); ?></h1>
 
-				<?php if ( current_user_can( 'create_users' ) ) : ?>
+			<?php if ( current_user_can( 'create_users' ) ) : ?>
 
-					<a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add New', 'user', 'buddypress' ); ?></a>
+				<a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add New', 'user', 'buddypress' ); ?></a>
 
-				<?php elseif ( is_multisite() && current_user_can( 'promote_users' ) ) : ?>
+			<?php elseif ( is_multisite() && current_user_can( 'promote_users' ) ) : ?>
 
-					<a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add Existing', 'user', 'buddypress' ); ?></a>
+				<a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add Existing', 'user', 'buddypress' ); ?></a>
 
-				<?php endif;
+			<?php endif;
 
-				if ( $usersearch ) {
-					printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;', 'buddypress' ) . '</span>', esc_html( $usersearch ) );
-				}
+			if ( $usersearch ) {
+				printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;', 'buddypress' ) . '</span>', esc_html( $usersearch ) );
+			}
 
-				?>
-			</h1>
+			?>
 
+			<hr class="wp-header-end">
+
 			<?php // Display each signups on its own row. ?>
 			<?php $bp_members_signup_list_table->views(); ?>
 
Index: src/bp-templates/bp-nouveau/includes/messages/classes.php
===================================================================
--- src/bp-templates/bp-nouveau/includes/messages/classes.php	(revision 11715)
+++ src/bp-templates/bp-nouveau/includes/messages/classes.php	(working copy)
@@ -171,11 +171,12 @@
 		?>
 		<div class="wrap">
 
-			<h1>
-				<?php echo esc_html_x( 'All Member Notices', 'Notices admin page title', 'buddypress' ); ?>
-				<a id="add_notice" class="add-new-h2" href="#"><?php esc_html_e( 'Add New Notice', 'buddypress' ); ?></a>
-			</h1>
+			<h1 class="wp-heading-inline"><?php echo esc_html_x( 'All Member Notices', 'Notices admin page title', 'buddypress' ); ?></h1>
 
+				<a id="add_notice" class="page-title-action" href="#"><?php esc_html_e( 'Add New Notice', 'buddypress' ); ?></a>
+
+			<hr class="wp-header-end">
+
 			<form action=<?php echo esc_url( $this->url ); ?> method="post">
 				<table class="widefat">
 					<tr>
Index: src/bp-xprofile/bp-xprofile-admin.php
===================================================================
--- src/bp-xprofile/bp-xprofile-admin.php	(revision 11715)
+++ src/bp-xprofile/bp-xprofile-admin.php	(working copy)
@@ -134,11 +134,12 @@
 
 	<div class="wrap">
 
-		<h1>
-			<?php _ex( 'Profile Fields', 'Settings page header', 'buddypress'); ?>
-			<a id="add_group" class="add-new-h2" href="users.php?page=bp-profile-setup&amp;mode=add_group"><?php _e( 'Add New Field Group', 'buddypress' ); ?></a>
-		</h1>
+		<h1 class="wp-heading-inline"><?php _ex( 'Profile Fields', 'Settings page header', 'buddypress'); ?></h1>
 
+			<a id="add_group" class="page-title-action" href="users.php?page=bp-profile-setup&amp;mode=add_group"><?php _e( 'Add New Field Group', 'buddypress' ); ?></a>
+
+		<hr class="wp-header-end">
+
 		<form action="" id="profile-field-form" method="post">
 
 			<?php
