Hi there,
Fantastic theme folks!
I was just wondering how I could change the timing of the captions as I'd like for them to appear on each slide a few seconds later than than the preset and maybe with a slightly slower transition. Is this possible?
Many thanks :)
Hey Ant!
Open the nectar-slider.js file located in the js folder and search for this:
//fadeIn active slide $($containerClass+' .swiper-slide:nth-child('+ (currentSlide + 1) +')').find('.content').children().each(function(i){ $(this).stop().delay(i*90).animate({ 'opacity' : 1, 'padding-top' : 0 },{ duration: 400, easing: 'easeOutQuad'}); });now just play with the values for duration and the "90" in i*90
Cheers :)
Many thanks :)