This is a short tips, which i solved for one of my client where she asked me to reposition the breadcrumb. In her site the breadcrumb was showing just before content, but she wanted to move it just above the post title. Here is the code, just you need to put in function.php of your genesis theme to achieve the result.
remove_action( 'genesis_before_entry_content', 'genesis_do_breadcrumbs' ); add_action( 'genesis_entry_header', 'genesis_do_breadcrumbs', 9 );