i have a problem with select client area slides please review below link
right now here is 10 imgs but it just slide and show 6 images,
i want thumbnailscroller width to scroll untill images finished.
<div class="inner_right_main_tow thumbnailscroller">Content here</div>
and here is jquery code,
$(".carousel-next").click(function(){
$(this).parents(".thumbnailscroller").find("ul").animate({left: '-710px'});
});
$(".carousel-previous").click(function(){
$(this).parents(".thumbnailscroller").find("ul").animate({left: '0'});
});
This happens because you give it a fixed location to scroll to
-710pxYou need to make this dynamic with
-=710px. This means that each time you click it will move 710 pixels to the left.But now you need to handle the when to stop..
Update to handle stopping (gets more complicated)
I would change the CSS to make it easier..
CSS fixes
9999pxfrom the.carouselrule.For the
.thumbnailscroller .carousel uladdand for the
.inner_right_main_tow liremove thefloat:leftand addjQuery