Hi
Sorry that I replied you a wrong answer.
1. Align the image to center:
Just put the following CSS into “OldCar options > Custom codes > Custom CSS”
.slides li img {margin:0 auto;}
2. Disable the auto-play:
Edit oldcar.setup.js file which is in “js” folder, find the following code
/*Flex slider*/
$(window).load(function(){
$('.van_slider').flexslider({
slideshow:true,
smoothHeight: true,
keyboard: true,
multipleKeyboard: true,
start: function() {
$('.van_slider').css('background','none');
}
});
});
Replace it to:
/*Flex slider*/
$(window).load(function(){
$('.van_slider').flexslider({
slideshow:true,
smoothHeight: true,
keyboard: true,
multipleKeyboard: true,
animationLoop: false,
start: function() {
$('.van_slider').css('background','none');
}
});
});