Reputation: 1859
I have used coin slider which is extracted from this site http://workshop.rs/projects/coin-slider/. It is now auto scrolling and shows previous and next only on hover. I need to disable the auto scroll and show the previous and next buttons normally too. The internal script that i have used is
<script>$(document).ready(function() {
$('#games').coinslider({ hoverPause: false });
$('#games1').coinslider({ hoverPause: false });
});
</script>
How can i do that?
Upvotes: 1
Views: 647
Reputation: 2700
hoverPause: true – pause on hover. this options pauses slider on mouse hover
maybe aoutoplay: falsse ;
Upvotes: 0
Reputation: 2700
for next an prev buttons use this
cs-navigation-games {
display: block !important;
}
Upvotes: 2