Unless otherwise indicated, the code snippets you see below should be placed into your theme’s functions.php file.
Here is the code to modify the Author Box title on your site:
<?php
//* Do NOT include the opening php tag
//* Customize the author box title
add_filter( 'genesis_author_box_title', 'custom_author_box_title' );
function custom_author_box_title() {
return '<strong>About the Author</strong>';
}