diff --git a/src/bp-templates/bp-legacy/css/buddypress-rtl.css b/src/bp-templates/bp-legacy/css/buddypress-rtl.css
index 62181ed0b..60e0b1869 100644
--- a/src/bp-templates/bp-legacy/css/buddypress-rtl.css
+++ b/src/bp-templates/bp-legacy/css/buddypress-rtl.css
@@ -786,6 +786,10 @@ body.activity-permalink #buddypress div.activity-comments div.acomment-content {
 	width: auto;
 }
 
+#buddypress .standard-form label.bp-datefield {
+	display: inline;
+}
+
 #buddypress .standard-form p label,
 #buddypress .standard-form #invite-list label {
 	font-weight: 400;
diff --git a/src/bp-templates/bp-legacy/css/buddypress.css b/src/bp-templates/bp-legacy/css/buddypress.css
index 3b35edb56..eacb8d9ee 100644
--- a/src/bp-templates/bp-legacy/css/buddypress.css
+++ b/src/bp-templates/bp-legacy/css/buddypress.css
@@ -786,6 +786,10 @@ body.activity-permalink #buddypress div.activity-comments div.acomment-content {
 	width: auto;
 }
 
+#buddypress .standard-form label.bp-datefield {
+	display: inline;
+}
+
 #buddypress .standard-form p label,
 #buddypress .standard-form #invite-list label {
 	font-weight: 400;
diff --git a/src/bp-templates/bp-nouveau/common-styles/_bp_user_profile.scss b/src/bp-templates/bp-nouveau/common-styles/_bp_user_profile.scss
index d1a92f131..b3a3d4d0e 100644
--- a/src/bp-templates/bp-nouveau/common-styles/_bp_user_profile.scss
+++ b/src/bp-templates/bp-nouveau/common-styles/_bp_user_profile.scss
@@ -57,6 +57,10 @@
 
 				label {
 					font-weight: 400;
+
+					&.bp-datefield {
+						display: inline;
+					}
 				}
 			}
 		}
diff --git a/src/bp-templates/bp-nouveau/css/buddypress-rtl.css b/src/bp-templates/bp-nouveau/css/buddypress-rtl.css
index 7154c517f..68526d70d 100644
--- a/src/bp-templates/bp-nouveau/css/buddypress-rtl.css
+++ b/src/bp-templates/bp-nouveau/css/buddypress-rtl.css
@@ -2600,6 +2600,10 @@ body.no-js .single-item-header .js-self-profile-button {
 	font-weight: 400;
 }
 
+.buddypress-wrap .profile.edit .editfield fieldset label.bp-datefield {
+	display: inline;
+}
+
 .buddypress-wrap .profile.edit .editfield {
 	display: flex;
 	flex-direction: column;
diff --git a/src/bp-templates/bp-nouveau/css/buddypress.css b/src/bp-templates/bp-nouveau/css/buddypress.css
index da992ae51..672a17974 100644
--- a/src/bp-templates/bp-nouveau/css/buddypress.css
+++ b/src/bp-templates/bp-nouveau/css/buddypress.css
@@ -2600,6 +2600,10 @@ body.no-js .single-item-header .js-self-profile-button {
 	font-weight: 400;
 }
 
+.buddypress-wrap .profile.edit .editfield fieldset label.bp-datefield {
+	display: inline;
+}
+
 .buddypress-wrap .profile.edit .editfield {
 	display: flex;
 	flex-direction: column;
diff --git a/src/bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php b/src/bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php
index 56398f98f..9502ddc3c 100644
--- a/src/bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php
+++ b/src/bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php
@@ -105,9 +105,8 @@ class BP_XProfile_Field_Type_Datebox extends BP_XProfile_Field_Type {
 				 */
 				do_action( bp_get_the_profile_field_errors_action() ); ?>
 
-				<label for="<?php bp_the_profile_field_input_name(); ?>_day" class="<?php echo is_admin() ? 'screen-reader-text' : 'bp-screen-reader-text' ;?>"><?php
-					/* translators: accessibility text */
-					esc_html_e( 'Select day', 'buddypress' );
+				<label for="<?php bp_the_profile_field_input_name(); ?>_day" class="bp-datefield"><?php
+					esc_html_e( 'Day', 'buddypress' );
 				?></label>
 				<select <?php echo $this->get_edit_field_html_elements( $day_r ); ?>>
 					<?php bp_the_profile_field_options( array(
@@ -116,9 +115,8 @@ class BP_XProfile_Field_Type_Datebox extends BP_XProfile_Field_Type {
 					) ); ?>
 				</select>
 
-				<label for="<?php bp_the_profile_field_input_name(); ?>_month" class="<?php echo is_admin() ? 'screen-reader-text' : 'bp-screen-reader-text' ;?>"><?php
-					/* translators: accessibility text */
-					esc_html_e( 'Select month', 'buddypress' );
+				<label for="<?php bp_the_profile_field_input_name(); ?>_month" class="bp-datefield"><?php
+					esc_html_e( 'Month', 'buddypress' );
 				?></label>
 				<select <?php echo $this->get_edit_field_html_elements( $month_r ); ?>>
 					<?php bp_the_profile_field_options( array(
@@ -127,9 +125,8 @@ class BP_XProfile_Field_Type_Datebox extends BP_XProfile_Field_Type {
 					) ); ?>
 				</select>
 
-				<label for="<?php bp_the_profile_field_input_name(); ?>_year" class="<?php echo is_admin() ? 'screen-reader-text' : 'bp-screen-reader-text' ;?>"><?php
-					/* translators: accessibility text */
-					esc_html_e( 'Select year', 'buddypress' );
+				<label for="<?php bp_the_profile_field_input_name(); ?>_year" class="bp-datefield"><?php
+					esc_html_e( 'Year', 'buddypress' );
 				?></label>
 				<select <?php echo $this->get_edit_field_html_elements( $year_r ); ?>>
 					<?php bp_the_profile_field_options( array(
@@ -300,25 +297,22 @@ class BP_XProfile_Field_Type_Datebox extends BP_XProfile_Field_Type {
 			'name' => bp_get_the_profile_field_input_name() . '_year'
 		) ); ?>
 
-		<label for="<?php bp_the_profile_field_input_name(); ?>_day" class="screen-reader-text"><?php
-			/* translators: accessibility text */
-			esc_html_e( 'Select day', 'buddypress' );
+		<label for="<?php bp_the_profile_field_input_name(); ?>_day" class="bp-datefield"><?php
+			esc_html_e( 'Day', 'buddypress' );
 		?></label>
 		<select <?php echo $this->get_edit_field_html_elements( $day_r ); ?>>
 			<?php bp_the_profile_field_options( array( 'type' => 'day' ) ); ?>
 		</select>
 
-		<label for="<?php bp_the_profile_field_input_name(); ?>_month" class="screen-reader-text"><?php
-			/* translators: accessibility text */
-			esc_html_e( 'Select month', 'buddypress' );
+		<label for="<?php bp_the_profile_field_input_name(); ?>_month" class="bp-datefield"><?php
+			esc_html_e( 'Month', 'buddypress' );
 		?></label>
 		<select <?php echo $this->get_edit_field_html_elements( $month_r ); ?>>
 			<?php bp_the_profile_field_options( array( 'type' => 'month' ) ); ?>
 		</select>
 
-		<label for="<?php bp_the_profile_field_input_name(); ?>_year" class="screen-reader-text"><?php
-			/* translators: accessibility text */
-			esc_html_e( 'Select year', 'buddypress' );
+		<label for="<?php bp_the_profile_field_input_name(); ?>_year" class="bp-datefield"><?php
+			esc_html_e( 'Year', 'buddypress' );
 		?></label>
 		<select <?php echo $this->get_edit_field_html_elements( $year_r ); ?>>
 			<?php bp_the_profile_field_options( array( 'type' => 'year' ) ); ?>
