Hi,
I'd like to achieve the following as shown in the flexslider website
$(window).load(function() {
// The slider being synced must be initialized first
$('#carousel').flexslider({
animation: "slide",
controlNav: false,
animationLoop: false,
slideshow: false,
itemWidth: 210,
itemMargin: 5,
asNavFor: '#slider'
});
$('#slider').flexslider({
animation: "slide",
controlNav: false,
animationLoop: false,
slideshow: false,
sync: "#carousel"
});
});
How do should i do this to integrate with your functions.js file ?
or should i disable the flexslider in functions.js, include flexslider manually in my page and initiate it ?
Thanks
