Modify the Gravatar Size Modify the Gravatar size in the author box of your site using the Genesis Framework: <?php // Modify the size of the Gravatar in the author box add_filter( 'genesis_author_box_gravatar_size', 'custom_author_box_gravatar_size' ); function custom_author_box_gravatar_size( $size ) { return 80; }