Hi
one think I'd like to get solved: When you click on an item in services and it opens, returning back to the carousel it has stopped moving.
Where is the switch/function to allow to to roll continously or not stop?
The blog relate script seems to be different as the list continues to roll/slide continously.
Thanks!
Hello,
Open theme.js file(sites/all/themes/md_arista/js/front), replace old code:
$(".close-service").click(function(){
var selector = $(this).attr('data-rel');
$(selector).slideUp(800);
$('html, body').delay(600).animate({ scrollTop: $("#services").offset().top}, 800);
});
by
$(".close-service").click(function(){
var selector = $(this).attr('data-rel');
$(selector).slideUp(800);
$('html, body').delay(600).animate({ scrollTop: $("#services").offset().top}, 800);
var owl = $("#service-slider").data('owlCarousel')
owl.play();
});
Thanks!
Hi
awesome! Thanks very much!