diff --git wordcamp.org/public_html/wp-content/plugins/wcpt/css/applications/admin.css wordcamp.org/public_html/wp-content/plugins/wcpt/css/applications/admin.css
index 2bd529463..d1d50a6d7 100644
--- wordcamp.org/public_html/wp-content/plugins/wcpt/css/applications/admin.css
+++ wordcamp.org/public_html/wp-content/plugins/wcpt/css/applications/admin.css
@@ -14,4 +14,27 @@ span.swag-needed-icon {
 
 #post-body input[type=text] {
     width: 50%;
-}
\ No newline at end of file
+}
+
+#wcpt_log .widefat th p:first-of-type {
+		margin-top: 0;
+}
+
+#wcpt_log .widefat th p:last-of-type {
+		margin-bottom: 0;
+}
+
+#wcpt_log .widefat td p,
+#wcpt_log .widefat th p {
+		color: #777;
+}
+
+#wcpt_log .widefat tr.note td,
+#wcpt_log .widefat tr.note th {
+		vertical-align:top;
+}
+
+#wcpt_log .widefat tr.note td p,
+#wcpt_log .widefat tr.note th p {
+		color: #222;
+}
diff --git wordcamp.org/public_html/wp-content/plugins/wcpt/views/common/metabox-log.php wordcamp.org/public_html/wp-content/plugins/wcpt/views/common/metabox-log.php
index 4f85e8361..3ed5a62b5 100644
--- wordcamp.org/public_html/wp-content/plugins/wcpt/views/common/metabox-log.php
+++ wordcamp.org/public_html/wp-content/plugins/wcpt/views/common/metabox-log.php
@@ -14,11 +14,11 @@
 		<?php if ( $entries ) : ?>
 
 			<?php foreach ( $entries as $entry ) : ?>
-				<tr>
-					<th><?php echo esc_html( date( 'Y-m-d h:ia', $entry['timestamp'] ) );          ?></th>
-					<th><?php echo esc_html( ucwords( str_replace( '_', ' ', $entry['type'] ) ) ); ?></th>
-					<th><?php echo esc_html( $entry['user_display_name'] );                        ?></th>
-					<th><?php echo wp_kses(  $entry['message'], wp_kses_allowed_html( 'data') );   ?></th>
+				<tr class="<?php echo esc_attr( str_replace( '_', '-', $entry['type'] ) ) ?>">
+					<th><p><?php echo esc_html( date( 'Y-m-d h:ia', $entry['timestamp'] ) );          			?></p></th>
+					<th><p><?php echo esc_html( ucwords( str_replace( '_', ' ', $entry['type'] ) ) ); 			?></p></th>
+					<th><p><?php echo esc_html( $entry['user_display_name'] );                        			?></p></th>
+					<th><?php echo wpautop( wp_kses( $entry['message'], wp_kses_allowed_html( 'data') ) );	?></th>
 				</tr>
 			<?php endforeach; ?>
 
diff --git wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-event/class-event-admin.php wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-event/class-event-admin.php
index ff8861e33..401268039 100644
--- wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-event/class-event-admin.php
+++ wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-event/class-event-admin.php
@@ -518,7 +518,7 @@ abstract class Event_Admin {
 
 		check_admin_referer( 'wcpt_notes', 'wcpt_notes_nonce' );
 
-		$new_note_message = sanitize_text_field( wp_unslash( $_POST['wcpt_new_note'] ) );
+		$new_note_message = sanitize_textarea_field( wp_unslash( $_POST['wcpt_new_note'] ) );
 
 		if ( empty( $new_note_message ) ) {
 			return;
