Hey, that’s a pretty fun idea, and someone else has wanted to add something to that overlay area as well, so I’ve added some hooks to the output to make it possible, although the implementation will be up to you.
I’m not pushing this to the official plugin yet, but if you are willing to experiment, you can download this one file: class-displayfeaturedimagegenesis-output.php. You’ll want to replace the existing file, which will require FTP access. It’s in the plugin’s /includes directory.
There are two new hooks you can use: display_featured_image_genesis_after_title
(the one you’ll want) and display_featured_image_genesis_before_title
. An example function would be:
add_action( 'display_featured_image_genesis_after_title', 'rgc_scroll_down' );
function rgc_scroll_down() {
echo '<div class="scroll-down"></div>';
}
although obviously the styling and functionality is all another matter entirely. Hope that helps!