Index: src/includes/common/template.php
===================================================================
--- src/includes/common/template.php	(revision 5415)
+++ src/includes/common/template.php	(working copy)
@@ -1416,7 +1416,7 @@
 				'numberposts' => $r['numberposts'],
 				'orderby'     => $r['orderby'],
 				'order'       => $r['order'],
-			) );			
+			) );
 		}
 
 		/** Drop Down *********************************************************/
@@ -2454,10 +2454,10 @@
 	// Display errors first...
 	if ( !empty( $errors ) ) : ?>
 
-		<div class="bbp-template-notice error">
-			<p>
-				<?php echo implode( "</p>\n<p>", $errors ); ?>
-			</p>
+		<div class="bbp-template-notice error" role="alert" tabindex="-1">
+			<ul>
+				<li><?php echo implode( "</li>\n<li>", $errors ); ?></li>
+			</ul>
 		</div>
 
 	<?php endif;
@@ -2466,9 +2466,9 @@
 	if ( !empty( $messages ) ) : ?>
 
 		<div class="bbp-template-notice">
-			<p>
-				<?php echo implode( "</p>\n<p>", $messages ); ?>
-			</p>
+			<ul>
+				<li><?php echo implode( "</li>\n<li>", $messages ); ?></li>
+			</ul>
 		</div>
 
 	<?php endif;
Index: src/includes/forums/template.php
===================================================================
--- src/includes/forums/template.php	(revision 5415)
+++ src/includes/forums/template.php	(working copy)
@@ -1942,8 +1942,8 @@
 		// Parse arguments against default values
 		$r = bbp_parse_args( $args, array(
 			'forum_id'  => 0,
-			'before'    => '<div class="bbp-template-notice info"><p class="bbp-forum-description">',
-			'after'     => '</p></div>',
+			'before'    => '<div class="bbp-template-notice info"><ul><li class="bbp-forum-description">',
+			'after'     => '</li></ul></div>',
 			'size'      => 14,
 			'feed'      => true
 		), 'get_single_forum_description' );
@@ -2226,7 +2226,7 @@
 
 		return apply_filters( 'bbp_get_form_forum_visibility', esc_attr( $forum_visibility ) );
 	}
-	
+
 /**
  * Output checked value of forum subscription
  *
Index: src/includes/topics/template.php
===================================================================
--- src/includes/topics/template.php	(revision 5415)
+++ src/includes/topics/template.php	(working copy)
@@ -3289,8 +3289,8 @@
 		// Parse arguments against default values
 		$r = bbp_parse_args( $args, array(
 			'topic_id'  => 0,
-			'before'    => '<div class="bbp-template-notice info"><p class="bbp-topic-description">',
-			'after'     => '</p></div>',
+			'before'    => '<div class="bbp-template-notice info"><ul><li class="bbp-topic-description">',
+			'after'     => '</li></ul></div>',
 			'size'      => 14
 		), 'get_single_topic_description' );
 
Index: src/includes/users/template.php
===================================================================
--- src/includes/users/template.php	(revision 5415)
+++ src/includes/users/template.php	(working copy)
@@ -1160,7 +1160,9 @@
 	if ( isset( $_GET['updated'] ) && ( bbp_is_single_user() || bbp_is_single_user_edit() ) ) : ?>
 
 	<div class="bbp-template-notice updated">
-		<p><?php esc_html_e( 'User updated.', 'bbpress' ); ?></p>
+		<ul>
+			<li><?php esc_html_e( 'User updated.', 'bbpress' ); ?></li>
+		</ul>
 	</div>
 
 	<?php endif;
@@ -1185,7 +1187,9 @@
 	if ( is_multisite() && ( bbp_is_single_user() || bbp_is_single_user_edit() ) && current_user_can( 'manage_network_options' ) && is_super_admin( bbp_get_displayed_user_id() ) ) : ?>
 
 	<div class="bbp-template-notice important">
-		<p><?php bbp_is_user_home() || bbp_is_user_home_edit() ? esc_html_e( 'You have super admin privileges.', 'bbpress' ) : esc_html_e( 'This user has super admin privileges.', 'bbpress' ); ?></p>
+		<ul>
+			<li><?php bbp_is_user_home() || bbp_is_user_home_edit() ? esc_html_e( 'You have super admin privileges.', 'bbpress' ) : esc_html_e( 'This user has super admin privileges.', 'bbpress' ); ?></li>
+		</ul>
 	</div>
 
 <?php endif;
Index: src/templates/default/bbpress/content-archive-topic.php
===================================================================
--- src/templates/default/bbpress/content-archive-topic.php	(revision 5415)
+++ src/templates/default/bbpress/content-archive-topic.php	(working copy)
@@ -27,7 +27,7 @@
 
 	<?php if ( bbp_is_topic_tag() ) : ?>
 
-		<?php bbp_topic_tag_description( array( 'before' => '<div class="bbp-template-notice info"><p>', 'after' => '</p></div>' ) ); ?>
+		<?php bbp_topic_tag_description( array( 'before' => '<div class="bbp-template-notice info"><ul><li>', 'after' => '</li></ul></div>' ) ); ?>
 
 	<?php endif; ?>
 
Index: src/templates/default/bbpress/content-topic-tag-edit.php
===================================================================
--- src/templates/default/bbpress/content-topic-tag-edit.php	(revision 5415)
+++ src/templates/default/bbpress/content-topic-tag-edit.php	(working copy)
@@ -15,7 +15,7 @@
 
 	<?php do_action( 'bbp_template_before_topic_tag_description' ); ?>
 
-	<?php bbp_topic_tag_description( array( 'before' => '<div class="bbp-template-notice info"><p>', 'after' => '</p></div>' ) ); ?>
+	<?php bbp_topic_tag_description( array( 'before' => '<div class="bbp-template-notice info"><ul><li>', 'after' => '</li></ul></div>' ) ); ?>
 
 	<?php do_action( 'bbp_template_after_topic_tag_description' ); ?>
 
Index: src/templates/default/bbpress/feedback-logged-in.php
===================================================================
--- src/templates/default/bbpress/feedback-logged-in.php	(revision 5415)
+++ src/templates/default/bbpress/feedback-logged-in.php	(working copy)
@@ -10,5 +10,7 @@
 ?>
 
 <div class="bbp-template-notice info">
-	<p><?php _e( 'You are already logged in.', 'bbpress' ); ?></p>
+	<ul>
+		<li><?php _e( 'You are already logged in.', 'bbpress' ); ?></li>
+	</ul>
 </div>
Index: src/templates/default/bbpress/feedback-no-access.php
===================================================================
--- src/templates/default/bbpress/feedback-no-access.php	(revision 5415)
+++ src/templates/default/bbpress/feedback-no-access.php	(working copy)
@@ -13,7 +13,9 @@
 	<h1 class="entry-title"><?php _e( 'Private', 'bbpress' ); ?></h1>
 	<div class="entry-content">
 		<div class="bbp-template-notice info">
-			<p><?php _e( 'You do not have permission to view this forum.', 'bbpress' ); ?></p>
+			<ul>
+				<li><?php _e( 'You do not have permission to view this forum.', 'bbpress' ); ?></li>
+			</ul>
 		</div>
 	</div>
 </div><!-- #forum-private -->
Index: src/templates/default/bbpress/feedback-no-forums.php
===================================================================
--- src/templates/default/bbpress/feedback-no-forums.php	(revision 5415)
+++ src/templates/default/bbpress/feedback-no-forums.php	(working copy)
@@ -10,5 +10,7 @@
 ?>
 
 <div class="bbp-template-notice">
-	<p><?php _e( 'Oh bother! No forums were found here!', 'bbpress' ); ?></p>
+	<ul>
+		<li><?php _e( 'Oh bother! No forums were found here!', 'bbpress' ); ?></li>
+	</ul>
 </div>
Index: src/templates/default/bbpress/feedback-no-replies.php
===================================================================
--- src/templates/default/bbpress/feedback-no-replies.php	(revision 5415)
+++ src/templates/default/bbpress/feedback-no-replies.php	(working copy)
@@ -10,5 +10,7 @@
 ?>
 
 <div class="bbp-template-notice">
-	<p><?php _e( 'Oh bother! No replies were found here!', 'bbpress' ); ?></p>
+	<ul>
+		<li><?php _e( 'Oh bother! No replies were found here!', 'bbpress' ); ?></li>
+	</ul>
 </div>
Index: src/templates/default/bbpress/feedback-no-search.php
===================================================================
--- src/templates/default/bbpress/feedback-no-search.php	(revision 5415)
+++ src/templates/default/bbpress/feedback-no-search.php	(working copy)
@@ -10,5 +10,7 @@
 ?>
 
 <div class="bbp-template-notice">
-	<p><?php _e( 'Oh bother! No search results were found here!', 'bbpress' ); ?></p>
+	<ul>
+		<li><?php _e( 'Oh bother! No search results were found here!', 'bbpress' ); ?></li>
+	</ul>
 </div>
Index: src/templates/default/bbpress/feedback-no-topics.php
===================================================================
--- src/templates/default/bbpress/feedback-no-topics.php	(revision 5415)
+++ src/templates/default/bbpress/feedback-no-topics.php	(working copy)
@@ -10,5 +10,7 @@
 ?>
 
 <div class="bbp-template-notice">
-	<p><?php _e( 'Oh bother! No topics were found here!', 'bbpress' ); ?></p>
+	<ul>
+		<li><?php _e( 'Oh bother! No topics were found here!', 'bbpress' ); ?></li>
+	</ul>
 </div>
Index: src/templates/default/bbpress/form-forum.php
===================================================================
--- src/templates/default/bbpress/form-forum.php	(revision 5415)
+++ src/templates/default/bbpress/form-forum.php	(working copy)
@@ -44,7 +44,9 @@
 				<?php if ( !bbp_is_forum_edit() && bbp_is_forum_closed() ) : ?>
 
 					<div class="bbp-template-notice">
-						<p><?php _e( 'This forum is closed to new content, however your account still allows you to do so.', 'bbpress' ); ?></p>
+						<ul>
+							<li><?php _e( 'This forum is closed to new content, however your account still allows you to do so.', 'bbpress' ); ?></li>
+						</ul>
 					</div>
 
 				<?php endif; ?>
@@ -52,7 +54,9 @@
 				<?php if ( current_user_can( 'unfiltered_html' ) ) : ?>
 
 					<div class="bbp-template-notice">
-						<p><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></p>
+						<ul>
+							<li><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></li>
+						</ul>
 					</div>
 
 				<?php endif; ?>
@@ -63,10 +67,12 @@
 
 					<?php do_action( 'bbp_theme_before_forum_form_title' ); ?>
 
-					<p>
-						<label for="bbp_forum_title"><?php printf( __( 'Forum Name (Maximum Length: %d):', 'bbpress' ), bbp_get_title_max_length() ); ?></label><br />
-						<input type="text" id="bbp_forum_title" value="<?php bbp_form_forum_title(); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_forum_title" maxlength="<?php bbp_title_max_length(); ?>" />
-					</p>
+					<ul>
+						<li>
+							<label for="bbp_forum_title"><?php printf( __( 'Forum Name (Maximum Length: %d):', 'bbpress' ), bbp_get_title_max_length() ); ?></label><br />
+							<input type="text" id="bbp_forum_title" value="<?php bbp_form_forum_title(); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_forum_title" maxlength="<?php bbp_title_max_length(); ?>" />
+						</li>
+					</ul>
 
 					<?php do_action( 'bbp_theme_after_forum_form_title' ); ?>
 
@@ -158,7 +164,9 @@
 
 	<div id="no-forum-<?php bbp_forum_id(); ?>" class="bbp-no-forum">
 		<div class="bbp-template-notice">
-			<p><?php printf( __( 'The forum &#8216;%s&#8217; is closed to new content.', 'bbpress' ), bbp_get_forum_title() ); ?></p>
+			<ul>
+				<li><?php printf( __( 'The forum &#8216;%s&#8217; is closed to new content.', 'bbpress' ), bbp_get_forum_title() ); ?></li>
+			</ul>
 		</div>
 	</div>
 
@@ -166,7 +174,9 @@
 
 	<div id="no-forum-<?php bbp_forum_id(); ?>" class="bbp-no-forum">
 		<div class="bbp-template-notice">
-			<p><?php is_user_logged_in() ? _e( 'You cannot create new forums.', 'bbpress' ) : _e( 'You must be logged in to create new forums.', 'bbpress' ); ?></p>
+			<ul>
+				<li><?php is_user_logged_in() ? _e( 'You cannot create new forums.', 'bbpress' ) : _e( 'You must be logged in to create new forums.', 'bbpress' ); ?></li>
+			</ul>
 		</div>
 	</div>
 
Index: src/templates/default/bbpress/form-reply-move.php
===================================================================
--- src/templates/default/bbpress/form-reply-move.php	(revision 5415)
+++ src/templates/default/bbpress/form-reply-move.php	(working copy)
@@ -26,11 +26,15 @@
 					<div>
 
 						<div class="bbp-template-notice info">
-							<p><?php _e( 'You can either make this reply a new topic with a new title, or merge it into an existing topic.', 'bbpress' ); ?></p>
+							<ul>
+								<li><?php _e( 'You can either make this reply a new topic with a new title, or merge it into an existing topic.', 'bbpress' ); ?></li>
+							</ul>
 						</div>
 
 						<div class="bbp-template-notice">
-							<p><?php _e( 'If you choose an existing topic, replies will be ordered by the time and date they were created.', 'bbpress' ); ?></p>
+							<ul>
+								<li><?php _e( 'If you choose an existing topic, replies will be ordered by the time and date they were created.', 'bbpress' ); ?></li>
+							</ul>
 						</div>
 
 						<fieldset class="bbp-form">
@@ -64,8 +68,10 @@
 
 						</fieldset>
 
-						<div class="bbp-template-notice error">
-							<p><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', 'bbpress' ); ?></p>
+						<div class="bbp-template-notice error" role="alert" tabindex="-1">
+							<ul>
+								<li><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', 'bbpress' ); ?></li>
+							</ul>
 						</div>
 
 						<div class="bbp-submit-wrapper">
Index: src/templates/default/bbpress/form-reply.php
===================================================================
--- src/templates/default/bbpress/form-reply.php	(revision 5415)
+++ src/templates/default/bbpress/form-reply.php	(working copy)
@@ -33,7 +33,9 @@
 				<?php if ( !bbp_is_topic_open() && !bbp_is_reply_edit() ) : ?>
 
 					<div class="bbp-template-notice">
-						<p><?php _e( 'This topic is marked as closed to new replies, however your posting capabilities still allow you to do so.', 'bbpress' ); ?></p>
+						<ul>
+							<li><?php _e( 'This topic is marked as closed to new replies, however your posting capabilities still allow you to do so.', 'bbpress' ); ?></li>
+						</ul>
 					</div>
 
 				<?php endif; ?>
@@ -41,7 +43,9 @@
 				<?php if ( current_user_can( 'unfiltered_html' ) ) : ?>
 
 					<div class="bbp-template-notice">
-						<p><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></p>
+						<ul>
+							<li><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></li>
+						</ul>
 					</div>
 
 				<?php endif; ?>
@@ -172,7 +176,9 @@
 
 	<div id="no-reply-<?php bbp_topic_id(); ?>" class="bbp-no-reply">
 		<div class="bbp-template-notice">
-			<p><?php printf( __( 'The topic &#8216;%s&#8217; is closed to new replies.', 'bbpress' ), bbp_get_topic_title() ); ?></p>
+			<ul>
+				<li><?php printf( __( 'The topic &#8216;%s&#8217; is closed to new replies.', 'bbpress' ), bbp_get_topic_title() ); ?></li>
+			</ul>
 		</div>
 	</div>
 
@@ -180,7 +186,9 @@
 
 	<div id="no-reply-<?php bbp_topic_id(); ?>" class="bbp-no-reply">
 		<div class="bbp-template-notice">
-			<p><?php printf( __( 'The forum &#8216;%s&#8217; is closed to new topics and replies.', 'bbpress' ), bbp_get_forum_title( bbp_get_topic_forum_id() ) ); ?></p>
+			<ul>
+				<li><?php printf( __( 'The forum &#8216;%s&#8217; is closed to new topics and replies.', 'bbpress' ), bbp_get_forum_title( bbp_get_topic_forum_id() ) ); ?></li>
+			</ul>
 		</div>
 	</div>
 
@@ -188,7 +196,9 @@
 
 	<div id="no-reply-<?php bbp_topic_id(); ?>" class="bbp-no-reply">
 		<div class="bbp-template-notice">
-			<p><?php is_user_logged_in() ? _e( 'You cannot reply to this topic.', 'bbpress' ) : _e( 'You must be logged in to reply to this topic.', 'bbpress' ); ?></p>
+			<ul>
+				<li><?php is_user_logged_in() ? _e( 'You cannot reply to this topic.', 'bbpress' ) : _e( 'You must be logged in to reply to this topic.', 'bbpress' ); ?></li>
+			</ul>
 		</div>
 	</div>
 
Index: src/templates/default/bbpress/form-topic-merge.php
===================================================================
--- src/templates/default/bbpress/form-topic-merge.php	(revision 5415)
+++ src/templates/default/bbpress/form-topic-merge.php	(working copy)
@@ -26,12 +26,16 @@
 					<div>
 
 						<div class="bbp-template-notice info">
-							<p><?php _e( 'Select the topic to merge this one into. The destination topic will remain the lead topic, and this one will change into a reply.', 'bbpress' ); ?></p>
-							<p><?php _e( 'To keep this topic as the lead, go to the other topic and use the merge tool from there instead.', 'bbpress' ); ?></p>
+							<ul>
+								<li><?php _e( 'Select the topic to merge this one into. The destination topic will remain the lead topic, and this one will change into a reply.', 'bbpress' ); ?></li>
+								<li><?php _e( 'To keep this topic as the lead, go to the other topic and use the merge tool from there instead.', 'bbpress' ); ?></li>
+							</ul>
 						</div>
 
 						<div class="bbp-template-notice">
-							<p><?php _e( 'All replies within both the topics will be merged chronologically. The order of the merged replies is based on the time they were posted. If the destination topic was created after this one, its post date will be updated to a second earlier than this one.', 'bbpress' ); ?></p>
+							<ul>
+								<li><?php _e( 'All replies within both the topics will be merged chronologically. The order of the merged replies is based on the time they were posted. If the destination topic was created after this one, its post date will be updated to a second earlier than this one.', 'bbpress' ); ?></li>
+							</ul>
 						</div>
 
 						<fieldset class="bbp-form">
@@ -86,8 +90,10 @@
 							</div>
 						</fieldset>
 
-						<div class="bbp-template-notice error">
-							<p><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', 'bbpress' ); ?></p>
+						<div class="bbp-template-notice error" role="alert" tabindex="-1">
+							<ul>
+								<li><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', 'bbpress' ); ?></li>
+							</ul>
 						</div>
 
 						<div class="bbp-submit-wrapper">
Index: src/templates/default/bbpress/form-topic-split.php
===================================================================
--- src/templates/default/bbpress/form-topic-split.php	(revision 5415)
+++ src/templates/default/bbpress/form-topic-split.php	(working copy)
@@ -26,11 +26,15 @@
 					<div>
 
 						<div class="bbp-template-notice info">
-							<p><?php _e( 'When you split a topic, you are slicing it in half starting with the reply you just selected. Choose to use that reply as a new topic with a new title, or merge those replies into an existing topic.', 'bbpress' ); ?></p>
+							<ul>
+								<li><?php _e( 'When you split a topic, you are slicing it in half starting with the reply you just selected. Choose to use that reply as a new topic with a new title, or merge those replies into an existing topic.', 'bbpress' ); ?></li>
+							</ul>
 						</div>
 
 						<div class="bbp-template-notice">
-							<p><?php _e( 'If you use the existing topic option, replies within both topics will be merged chronologically. The order of the merged replies is based on the time and date they were posted.', 'bbpress' ); ?></p>
+							<ul>
+								<li><?php _e( 'If you use the existing topic option, replies within both topics will be merged chronologically. The order of the merged replies is based on the time and date they were posted.', 'bbpress' ); ?></li>
+							</ul>
 						</div>
 
 						<fieldset class="bbp-form">
@@ -90,8 +94,10 @@
 							</div>
 						</fieldset>
 
-						<div class="bbp-template-notice error">
-							<p><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', 'bbpress' ); ?></p>
+						<div class="bbp-template-notice error" role="alert" tabindex="-1">
+							<ul>
+								<li><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', 'bbpress' ); ?></li>
+							</ul>
 						</div>
 
 						<div class="bbp-submit-wrapper">
Index: src/templates/default/bbpress/form-topic-tag.php
===================================================================
--- src/templates/default/bbpress/form-topic-tag.php	(revision 5415)
+++ src/templates/default/bbpress/form-topic-tag.php	(working copy)
@@ -22,11 +22,15 @@
 				<legend><?php _e( 'Rename', 'bbpress' ); ?></legend>
 
 				<div class="bbp-template-notice info">
-					<p><?php _e( 'Leave the slug empty to have one automatically generated.', 'bbpress' ); ?></p>
+					<ul>
+						<li><?php _e( 'Leave the slug empty to have one automatically generated.', 'bbpress' ); ?></li>
+					</ul>
 				</div>
 
 				<div class="bbp-template-notice">
-					<p><?php _e( 'Changing the slug affects its permalink. Any links to the old slug will stop working.', 'bbpress' ); ?></p>
+					<ul>
+						<li><?php _e( 'Changing the slug affects its permalink. Any links to the old slug will stop working.', 'bbpress' ); ?></li>
+					</ul>
 				</div>
 
 				<form id="rename_tag" name="rename_tag" method="post" action="<?php the_permalink(); ?>">
@@ -64,7 +68,9 @@
 				<legend><?php _e( 'Merge', 'bbpress' ); ?></legend>
 
 				<div class="bbp-template-notice">
-					<p><?php _e( 'Merging tags together cannot be undone.', 'bbpress' ); ?></p>
+					<ul>
+						<li><?php _e( 'Merging tags together cannot be undone.', 'bbpress' ); ?></li>
+					</ul>
 				</div>
 
 				<form id="merge_tag" name="merge_tag" method="post" action="<?php the_permalink(); ?>">
@@ -93,11 +99,15 @@
 					<legend><?php _e( 'Delete', 'bbpress' ); ?></legend>
 
 					<div class="bbp-template-notice info">
-						<p><?php _e( 'This does not delete your topics. Only the tag itself is deleted.', 'bbpress' ); ?></p>
+						<ul>
+							<li><?php _e( 'This does not delete your topics. Only the tag itself is deleted.', 'bbpress' ); ?></li>
+						</ul>
 					</div>
 					<div class="bbp-template-notice">
-						<p><?php _e( 'Deleting a tag cannot be undone.', 'bbpress' ); ?></p>
-						<p><?php _e( 'Any links to this tag will no longer function.', 'bbpress' ); ?></p>
+						<ul>
+							<li><?php _e( 'Deleting a tag cannot be undone.', 'bbpress' ); ?></li>
+							<li><?php _e( 'Any links to this tag will no longer function.', 'bbpress' ); ?></li>
+						</ul>
 					</div>
 
 					<form id="delete_tag" name="delete_tag" method="post" action="<?php the_permalink(); ?>">
Index: src/templates/default/bbpress/form-topic.php
===================================================================
--- src/templates/default/bbpress/form-topic.php	(revision 5415)
+++ src/templates/default/bbpress/form-topic.php	(working copy)
@@ -50,7 +50,9 @@
 				<?php if ( !bbp_is_topic_edit() && bbp_is_forum_closed() ) : ?>
 
 					<div class="bbp-template-notice">
-						<p><?php _e( 'This forum is marked as closed to new topics, however your posting capabilities still allow you to do so.', 'bbpress' ); ?></p>
+						<ul>
+							<li><?php _e( 'This forum is marked as closed to new topics, however your posting capabilities still allow you to do so.', 'bbpress' ); ?></li>
+						</ul>
 					</div>
 
 				<?php endif; ?>
@@ -58,7 +60,9 @@
 				<?php if ( current_user_can( 'unfiltered_html' ) ) : ?>
 
 					<div class="bbp-template-notice">
-						<p><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></p>
+						<ul>
+							<li><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></li>
+						</ul>
 					</div>
 
 				<?php endif; ?>
@@ -223,7 +227,9 @@
 
 	<div id="no-topic-<?php bbp_topic_id(); ?>" class="bbp-no-topic">
 		<div class="bbp-template-notice">
-			<p><?php printf( __( 'The forum &#8216;%s&#8217; is closed to new topics and replies.', 'bbpress' ), bbp_get_forum_title() ); ?></p>
+			<ul>
+				<li><?php printf( __( 'The forum &#8216;%s&#8217; is closed to new topics and replies.', 'bbpress' ), bbp_get_forum_title() ); ?></li>
+			</ul>
 		</div>
 	</div>
 
@@ -231,7 +237,9 @@
 
 	<div id="no-topic-<?php bbp_topic_id(); ?>" class="bbp-no-topic">
 		<div class="bbp-template-notice">
-			<p><?php is_user_logged_in() ? _e( 'You cannot create new topics.', 'bbpress' ) : _e( 'You must be logged in to create new topics.', 'bbpress' ); ?></p>
+			<ul>
+				<li><?php is_user_logged_in() ? _e( 'You cannot create new topics.', 'bbpress' ) : _e( 'You must be logged in to create new topics.', 'bbpress' ); ?></li>
+			</ul>
 		</div>
 	</div>
 
Index: src/templates/default/bbpress/form-user-register.php
===================================================================
--- src/templates/default/bbpress/form-user-register.php	(revision 5415)
+++ src/templates/default/bbpress/form-user-register.php	(working copy)
@@ -16,8 +16,10 @@
 		<?php do_action( 'bbp_template_before_register_fields' ); ?>
 
 		<div class="bbp-template-notice">
-			<p><?php _e( 'Your username must be unique, and cannot be changed later.', 'bbpress' ) ?></p>
-			<p><?php _e( 'We use your email address to email you a secure password and verify your account.', 'bbpress' ) ?></p>
+			<ul>
+				<li><?php _e( 'Your username must be unique, and cannot be changed later.', 'bbpress' ) ?></li>
+				<li><?php _e( 'We use your email address to email you a secure password and verify your account.', 'bbpress' ) ?></li>
+			</ul>
 		</div>
 
 		<div class="bbp-username">
Index: src/templates/default/css/bbpress.css
===================================================================
--- src/templates/default/css/bbpress.css	(revision 5415)
+++ src/templates/default/css/bbpress.css	(working copy)
@@ -883,7 +883,7 @@
 	div.bbp-template-notice.warning a {
 		color: #c00;
 	}
-	div.bbp-template-notice p {
+	div.bbp-template-notice li {
 		margin: 0.5em 0 6px 0 !important;
 		padding: 2px;
 		font-size: 12px;
