diff --git a/wp-content/themes/twentyeleven/style.css b/wp-content/themes/twentyeleven/style.css index 20d55466e0..755919875b 100644 --- a/wp-content/themes/twentyeleven/style.css +++ b/wp-content/themes/twentyeleven/style.css @@ -2123,7 +2123,6 @@ a.comment-reply-link > span { font-weight: bold; left: 75%; position: absolute; - top: 45px; z-index: 1; } #respond .comment-notes, diff --git a/wp-content/themes/twentytwelve/style.css b/wp-content/themes/twentytwelve/style.css index de971e74f1..deb48373ac 100644 --- a/wp-content/themes/twentytwelve/style.css +++ b/wp-content/themes/twentytwelve/style.css @@ -1237,12 +1237,6 @@ a.comment-reply-link:hover { .required { color: red; } -label ~ span.required { - display: block; - float: left; - margin: -18px 0 0 -16px; - margin: -1.285714286rem 0 0 -1.142857143rem; -} /* =Front page template diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index 907bc77279..8be25e10d5 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -1521,9 +1521,9 @@ function comment_form( $args = array(), $post_id = null ) { $req = get_option( 'require_name_email' ); $aria_req = ( $req ? " aria-required='true'" : '' ); $fields = array( - 'author' => '

' . ' ' . ( $req ? '*' : '' ) . + 'author' => '

' . ' ' . '

', - 'email' => '

' . ( $req ? '*' : '' ) . + 'email' => '

' . '

', 'url' => '

' . '

',