@Alison: Ok for that
1. Go to “Appearance => Theme Options => Promotion Headline Options => Promotion Position” and select “After Featured Content”.
Then you will see
i. Header Image
ii. Featured Content
iii. Promotion Headline
But you want
i. Featured Content
ii. Promotion Headline
iii. Header Image
2. For that you need to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/.
Then add the following code in your child theme functions.php file.
// Unhook default Adventurous functions
function unhook_adventurous_functions() {
remove_action( 'adventurous_before', 'adventurous_featured_image_display', 10 );
}
add_action( 'init', 'unhook_adventurous_functions' );
//Adding Featured Image after promotion headline
add_action( 'adventurous_before_main', 'adventurous_featured_overall_image', 101 );