First, the Chameleon theme you are referring to is the “ElegantThemes Chameleon” correct? – https://www.elegantthemes.com/gallery/chameleon/
What you mentioned above is the styles for the slider which is only used for display. What you would want to do is to include the “featured.php” found in “TEMPLATE_DIRECTORY/includes/featured.php”.. If you want it to show on your post loop, single post, and pages, go open index.php, page.php, and single.php and include this code:
<?php include(TEMPLATEPATH . ‘/includes/featured.php’); ?>
between the line that gets the header and includes the “breadcrumbs.php” (somewhere in line 2 to line 8)..
<?php get_header(); ?>
<?php include(TEMPLATEPATH . ‘/includes/featured.php’); ?> //to include
<?php include(TEMPLATEPATH . ‘/includes/breadcrumbs.php’); ?>
This will call the featured slider and display it on your post loop, single post, and pages..
-Raby