@ghostzapper: It depends on the slider code for the template/php functions. So, first you need to build child theme. For Child theme, check out http://catchthemes.com/blog/create-child-theme-wordpress/
Then you can add the following code in your child theme functions.php file. In the following replace your shortcode [huge_it_portfolio id=N] with your shortcode
/**
* Add Huge Slider.
*
* @uses action hook catchbase_before_content.
*
*/
function catchbase_huge_slider() {
echo do_shortcode([huge_it_portfolio id=N]);
}
add_action( 'catchbase_before_content', 'catchbase_huge_slider', 10 );