The arrow graphics in the slider aren’t working correctly for me. The previous arrow moves the image forward and the next arrow moves the image back. How to swap this ?
Just replace header carousel code to this one:
<script type="text/javascript">
$(function() {
$("#slideshow").jCarouselLite({
btnNext: ".prev",
btnPrev: ".next",
vertical: true ,
speed: 500,
auto:4000,
visible: 1
});
$("#slideshow2").jCarouselLite({
btnNext: ".prev",
btnPrev: ".next",
visible: 1,
auto:4000,
speed:500
});
});
</script>
The slider speed – Can I alter the code to make it a slower speed before it moves to the next image ?
Sure! In header carousel code (sample below) edit “speed” and “auto” values in both places.
<script type="text/javascript">
$(function() {
$("#slideshow").jCarouselLite({
btnNext: ".prev",
btnPrev: ".next",
vertical: true ,
speed: 500,
auto:4000,
visible: 1
});
$("#slideshow2").jCarouselLite({
btnNext: ".prev",
btnPrev: ".next",
visible: 1,
auto:4000,
speed:500
});
});
</script>


186 Purchases
26 Comments