diff --git a/src/wp-content/themes/twentynineteen/comments.php b/src/wp-content/themes/twentynineteen/comments.php
index d00ac4611835..2e7866e3704a 100644
a
|
b
|
|
101 | 101 | // Show comment form at bottom if showing newest comments at the bottom. |
102 | 102 | if ( comments_open() && 'asc' === strtolower( get_option( 'comment_order', 'asc' ) ) ) : |
103 | 103 | ?> |
104 | | <div class="comment-form-flex"> |
105 | | <span class="screen-reader-text"><?php _e( 'Leave a comment', 'twentynineteen' ); ?></span> |
| 104 | <div class="comment-form-wrapper"> |
| 105 | <h2 class="comments-title"><?php _e( 'Leave a comment', 'twentynineteen' ); ?></h2> |
106 | 106 | <?php twentynineteen_comment_form( 'asc' ); ?> |
107 | | <h2 class="comments-title" aria-hidden="true"><?php _e( 'Leave a comment', 'twentynineteen' ); ?></h2> |
108 | 107 | </div> |
109 | 108 | <?php |
110 | 109 | endif; |
diff --git a/src/wp-content/themes/twentynineteen/print.css b/src/wp-content/themes/twentynineteen/print.css
index ffc481cba656..98cac2826431 100644
a
|
b
|
Andreas Hecht in https://www.jotform.com/blog/css-perfect-print-stylesheet-98272 |
103 | 103 | .author-description:before, |
104 | 104 | .post-navigation, |
105 | 105 | .widget-area, |
| 106 | .comment-form-wrapper, |
106 | 107 | .comment-form-flex, |
107 | 108 | .comment-reply, |
108 | 109 | .comment .comment-metadata .edit-link { |
diff --git a/src/wp-content/themes/twentynineteen/print.scss b/src/wp-content/themes/twentynineteen/print.scss
index 47976da65fa0..f3b49e934ed7 100644
a
|
b
|
Andreas Hecht in https://www.jotform.com/blog/css-perfect-print-stylesheet-98272 |
128 | 128 | .author-description:before, |
129 | 129 | .post-navigation, |
130 | 130 | .widget-area, |
| 131 | .comment-form-wrapper, |
131 | 132 | .comment-form-flex, |
132 | 133 | .comment-reply, |
133 | 134 | .comment .comment-metadata .edit-link { |