diff --git src/bp-notifications/bp-notifications-template.php src/bp-notifications/bp-notifications-template.php
index 1caf8a1..02b0f9f 100644
--- src/bp-notifications/bp-notifications-template.php
+++ src/bp-notifications/bp-notifications-template.php
@@ -1057,6 +1057,7 @@ function bp_notifications_sort_order_form() {
  */
 function bp_notifications_bulk_management_dropdown() {
 	?>
+	<label class="bp-screen-reader-text" for="notification-select"><?php _e( 'Bulk Actions', 'buddypress' ); ?></label>
 	<select name="notification_bulk_action" id="notification-select">
 		<option value="" selected="selected"><?php _e( 'Bulk Actions', 'buddypress' ); ?></option>
 
diff --git src/bp-templates/bp-legacy/buddypress/members/single/notifications/notifications-loop.php src/bp-templates/bp-legacy/buddypress/members/single/notifications/notifications-loop.php
index 7647d7d..90e4d52 100644
--- src/bp-templates/bp-legacy/buddypress/members/single/notifications/notifications-loop.php
+++ src/bp-templates/bp-legacy/buddypress/members/single/notifications/notifications-loop.php
@@ -3,7 +3,7 @@
 		<thead>
 			<tr>
 				<th class="icon"></th>
-				<th><label for="select-all-notifications"><?php _e( 'Select all', 'buddypress' ); ?></label><input id="select-all-notifications" type="checkbox"></th>
+				<th><label class="bp-screen-reader-text" for="select-all-notifications"><?php _e( 'Select all', 'buddypress' ); ?></label><input id="select-all-notifications" type="checkbox"></th>
 				<th class="title"><?php _e( 'Notification', 'buddypress' ); ?></th>
 				<th class="date"><?php _e( 'Date Received', 'buddypress' ); ?></th>
 				<th class="actions"><?php _e( 'Actions',    'buddypress' ); ?></th>
diff --git src/bp-templates/bp-legacy/css/buddypress.css src/bp-templates/bp-legacy/css/buddypress.css
index 539da68..8674926 100644
--- src/bp-templates/bp-legacy/css/buddypress.css
+++ src/bp-templates/bp-legacy/css/buddypress.css
@@ -731,9 +731,6 @@ body.activity-permalink #buddypress div.activity-comments div.acomment-content {
 #buddypress .standard-form #blog-details-section {
 	clear: left;
 }
-#buddypress label[for="select-all-notifications"] {
-	display: none;
-}
 #buddypress #notifications-bulk-management {
 	clear: left;
 }
diff --git src/bp-templates/bp-legacy/js/buddypress.js src/bp-templates/bp-legacy/js/buddypress.js
index 3cf551b..5f71204 100644
--- src/bp-templates/bp-legacy/js/buddypress.js
+++ src/bp-templates/bp-legacy/js/buddypress.js
@@ -1538,6 +1538,21 @@ jq(document).ready( function() {
 		}
 	});
 
+	/* Make sure a 'Bulk Action' is choosed before submiting the form */
+	jq('#notifications-bulk-management').on('submit', function(){
+		if ( jq(this).find('#notification-select').val() === '' ) {
+			jq('#notification-bulk-manage').attr('disabled', 'disabled');
+			return false;
+		}
+	});
+
+	/* Remove the disabled attribute from the form submit button when bulk action has a value */
+	jq('#notification-select').on('change', function(){
+		if ( jq(this).val() !== '' ) {
+			jq('#notification-bulk-manage').removeAttr('disabled');
+		}
+	});
+
 	/* Close site wide notices in the sidebar */
 	jq('#close-notice').on( 'click', function() {
 		jq(this).addClass('loading');
