Modify the Gravatar Size

Unless otherwise indicated, the code snippets you see below should be placed into your theme’s functions.php file.

Here is the code needed to modify the size of the Gravatar on your site:

<?php
//* Do NOT include the opening php tag
 
//* Modify the size of the Gravatar in the author box
add_filter( 'genesis_author_box_gravatar_size', 'author_box_gravatar_size' );
function author_box_gravatar_size( $size ) {
	return 80;
}
What are your feelings