@Hair Bear: Can you post in your friend site URL.
Basically for this, you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/
Then remove slider by adding the following code in your child theme functions.php
// Unhook default Adventurous functions
function unhook_adventurous_functions() {
remove_action( 'adventurous_before_main', 'adventurous_slider_display', 40 );
}
add_action( 'init', 'unhook_adventurous_functions' );
Then you can hook it in the position you like. Like below:
//Adding Slider Image in main content box
add_action( 'adventurous_content_sidebar', 'adventurous_slider_display', 40 );
Or you can simply call the function.