@scnelson1: This is the default structure of the theme. If you want to header image to display at the top before Featured Slider, you’ll have to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php add the following codes.
add_action( 'init', 'fullframe_child_move_header_image_before_slider' );
function fullframe_child_move_header_image_before_slider() {
remove_action( 'fullframe_before_content', 'fullframe_featured_overall_image', 20 );
remove_action( 'fullframe_before_content', 'fullframe_featured_slider', 10 );
add_action( 'fullframe_before_content', 'fullframe_featured_overall_image', 10 );
add_action( 'fullframe_before_content', 'fullframe_featured_slider', 20 );
}
Let me know if any problem.
Regards,
Mahesh