Title: Slider automatic
Last modified: August 21, 2016

---

# Slider automatic

 *  Resolved [samalouf](https://wordpress.org/support/users/samalouf/)
 * (@samalouf)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/slider-automatic/)
 * Alex, incredible work you did! I worked with many templates, yours is just amazing:
   powerfull and so simple.
 * My slider doesn’t turn automatically, how can I make that? Also, any possibility
   to make title and excerpt appear over the pics in the slider instead than underneath?
 * Thanks

Viewing 10 replies - 1 through 10 (of 10 total)

 *  [Alexander Agnarson](https://wordpress.org/support/users/alxmedia/)
 * (@alxmedia)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/slider-automatic/#post-4348002)
 * Thanks!
 * In /inc/featured.php on line 67, locate:
 *     ```
       slideshow: false,
       ```
   
 * Change that to:
 *     ```
       slideshow: true,
       ```
   
 * And there you go 🙂
 * As for the title on top of the image, you would need to wrap title + description
   in a div, put it inside the featured image div, and put something like:
 *     ```
       background: rgba(0,0,0,0.7); position: absolute; bottom: 0; right: 0; left: 0;
       ```
   
 * On it.
 *  Thread Starter [samalouf](https://wordpress.org/support/users/samalouf/)
 * (@samalouf)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/slider-automatic/#post-4348005)
 * Thanks for slideshow solution.
 * For the title, I don’t know how to wrap and put that in the featured image, put
   I’ll try to find out.
 * I also asked you another question about top nav, in a separate post, I’d be glad
   to know if you have any solution… Thank you.
 *  [alemarengo84](https://wordpress.org/support/users/alemarengo84/)
 * (@alemarengo84)
 * [12 years ago](https://wordpress.org/support/topic/slider-automatic/#post-4348240)
 * Hi!
    Now that I know how to activate featured posts slider, I’d like to know 
   if I can just change height of posts’ thumbnails. Or better, I’d like to fix 
   those two things into child theme. How can I? Thanks for reply.
 *  [Ashish-Christian](https://wordpress.org/support/users/ashish-christian/)
 * (@ashish-christian)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/slider-automatic/#post-4348241)
 * Alexander Agnarson
 * Thanks for your help!
    ———————————- Thanks!
 * In /inc/featured.php on line 67, locate:
 * slideshow: false,
 * Change that to:
 * slideshow: true,
 * And there you go 🙂
 * As for the title on top of the image, you would need to wrap title + description
   in a div, put it inside the featured image div, and put something like:
 * background: rgba(0,0,0,0.7); position: absolute; bottom: 0; right: 0; left: 0;
 * On it.
 *  [alemarengo84](https://wordpress.org/support/users/alemarengo84/)
 * (@alemarengo84)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/slider-automatic/#post-4348242)
 * Hi!
    Just to let you know how simple it was to accomplish my request by following
   the simple rules of creating a child theme. Nothing more, nothing less. Thanks
   again Alx!
 *  [wsanti04](https://wordpress.org/support/users/wsanti04/)
 * (@wsanti04)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/slider-automatic/#post-4348243)
 * my slider is not working, and I did the above procedure. can someone help me?
 *  [Rob Fleming](https://wordpress.org/support/users/rob0/)
 * (@rob0)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/slider-automatic/#post-4348244)
 * Hello:
 * > As for the title on top of the image, you would need to wrap title + description
   > in a div, put it inside the featured image div, and put something like:
   > background: rgba(0,0,0,0.7); position: absolute; bottom: 0; right: 0; left:
   > 0;
 * i would like to move the featured title text on my home page slider above the
   image as well. what page do i make the edit in, and can you explain in detail
   how to add this code into my edit?
 * ‘background: rgba(0,0,0,0.7); position: absolute; bottom: 0; right: 0; left: 
   0;’
 * Thx in advance!
 *  [desatir7316](https://wordpress.org/support/users/desatir7316/)
 * (@desatir7316)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/slider-automatic/#post-4348245)
 * for me this file only has 63 lines
    what should i do? 🙁
 *  [elena.needs.help](https://wordpress.org/support/users/elenaneedshelp/)
 * (@elenaneedshelp)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/slider-automatic/#post-4348246)
 * Hey guys!
 * I am struggling with my slider which used to be manual and then I switched it
   to automatic. As you can see in the
    [picture](http://i.imgur.com/8GWQGO2.png)
   active-panel is fully visible with full opacity, and the left and right sides
   are faded with lower opacity, this is the code for that part:
 *     ```
       // Highlight Center Panel
       jQuery(window).resize(function() {
           var nextCenter = Math.ceil(jQuery(window).width() / 900);
           var prevCenter = Math.ceil((jQuery(window).width() - 900) / 900);
           jQuery(".grid-panel:eq("+prevCenter+")").addClass("active-panel");
   
           jQuery("#grid-next").click(function(){
               jQuery(".grid-panel").removeClass("active-pan+el");
               jQuery(".grid-panel:eq("+nextCenter+")").addClass("active-panel");
           });
   
           jQuery("#grid-prev").click(function(){
               jQuery(".grid-panel").removeClass("active-panel");
               jQuery(".grid-panel:eq("+prevCenter+")").addClass("active-panel");
           });
       }).resize();
       ```
   
 * When I switch the slider from manual to automatic the lower opacity part is no
   longer working properly- It is not “fixed” to left and right side of the slider
   but it flows along with the slider.
 * So how to keep lower opacity option “fixed” on the left and the right side of
   the slider when I switch the slider from manual to automatic?
 * Grid Carousel:
 *     ```
       jQuery("#grid").carouFredSel({
           width: 5000,
           padding: 0,
           **auto: true,** - by defaulth it is set to false!
           prev: "#grid-prev",
           next: "#grid-next",
           items: {
               visible: 3,
               minimum: 1,
               start: -1
           },
           scroll: {
               items: 1,
               duration: 1000
           }
       });
       ```
   
 * Any help is very much appreciated.
    Thank you
 *  [kroliczek](https://wordpress.org/support/users/kroliczek/)
 * (@kroliczek)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/slider-automatic/#post-4348250)
 * Can you explain how to:
 * As for the title on top of the image, you would need to wrap title + description
   in a div, put it inside the featured image div, and put something like:
 * and where in the featured.php should I put “background”?

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘Slider automatic’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/hueman/3.7.27/screenshot.png)
 * Hueman
 * [Support Threads](https://wordpress.org/support/theme/hueman/)
 * [Active Topics](https://wordpress.org/support/theme/hueman/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/hueman/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/hueman/reviews/)

## Tags

 * [featured](https://wordpress.org/support/topic-tag/featured/)

 * 10 replies
 * 9 participants
 * Last reply from: [kroliczek](https://wordpress.org/support/users/kroliczek/)
 * Last activity: [11 years, 7 months ago](https://wordpress.org/support/topic/slider-automatic/#post-4348250)
 * Status: resolved