Edit File: author-box.php
<div class="orun-single-author-box"> <div class="orun-single-author-box-image"> <a title="<?php esc_attr_e(get_the_author_meta('display_name')); ?>" rel="nofollow" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>"> <img src="<?php echo esc_url(get_avatar_url( get_the_author_meta('ID') )); ?>" alt="<?php esc_attr_e(get_the_author_meta('display_name')); ?>"></a> </div> <div class="orun-single-author-box-text"> <h3> <a rel="nofollow" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" title="<?php esc_attr_e(get_the_author_meta('display_name')); ?>"> <?php esc_attr_e(get_the_author_meta('display_name')); ?></a> </h3> <?php if (!empty(get_the_author_meta('description'))) { echo '<p>'. get_the_author_meta('description') .'</p>'; } ?> </div> </div>