Index: wp-content/themes/twentythirteen/style.css
===================================================================
--- wp-content/themes/twentythirteen/style.css	(revision 23460)
+++ wp-content/themes/twentythirteen/style.css	(working copy)
@@ -2215,12 +2215,17 @@
 }
 
 .comment-author .fn,
+.comment-meta .fn,
 .comment-reply-link {
 	color: #ed331c;
 	font-size: 14px;
 	font-style: normal;
 }
 
+.comment-meta .fn a {
+	color: #f94a0a;
+}
+
 .bypostauthor .fn:before {
 	content: '\f408';
 }
@@ -2238,6 +2243,12 @@
 	width:         calc(100% - 124px);
 }
 
+.comment.no-avatar .comment-meta,
+.comment.no-avatar .comment-content,
+.comment.no-avatar .reply {
+	width: 100%;
+}
+
 .comment-meta,
 .comment-meta a {
 	color: #a2a2a2;
Index: wp-content/themes/twentythirteen/functions.php
===================================================================
--- wp-content/themes/twentythirteen/functions.php	(revision 23460)
+++ wp-content/themes/twentythirteen/functions.php	(working copy)
@@ -343,13 +343,19 @@
 		// Proceed with normal comments.
 	?>
 	<li id="li-comment-<?php comment_ID(); ?>">
-		<article id="comment-<?php comment_ID(); ?>" <?php comment_class(); ?>>
+		<?php $show_avatars = get_option( 'show_avatars' ); ?>
+		<article id="comment-<?php comment_ID(); ?>" <?php comment_class( $show_avatars ? '' : 'no-avatar' ); ?>>
+			<?php if ( $show_avatars) : ?>
 			<div class="comment-author vcard">
 				<?php echo get_avatar( $comment, 74 ); ?>
 				<cite class="fn"><?php comment_author_link(); ?></cite>
 			</div><!-- .comment-author -->
+			<?php endif; ?>
 
 			<header class="comment-meta">
+				<?php if ( ! $show_avatars) : ?>
+				<cite class="fn"><?php comment_author_link(); ?></cite> &middot;
+				<?php endif; ?>
 				<?php
 					printf( '<a href="%1$s"><time datetime="%2$s">%3$s</time></a>',
 						esc_url( get_comment_link( $comment->comment_ID ) ),
