Hello,
Please replace the script code under plugin–> responsive-header-image-slider –> responsive_headerimageslider.php–> line 310
<script type="text/javascript">
jQuery(function() {
jQuery('#slides').slidesjs({
width: <?php echo $sliderdefultwidth ; ?>,
height: <?php echo $sliderdefultheight ; ?>,
play: {
active: <?php echo $pausedefulthover; ?>,
auto: <?php echo $autopalytrue; ?>,
interval: <?php echo $autoplaydefultspeed; ?>,
swap: true
},
pagination: {
active: <?php echo $paginationtrue; ?>
}
});
});
</script>
with this code
<script type="text/javascript">
jQuery(function() {
jQuery('#slides').slidesjs({
width: <?php echo $sliderdefultwidth ; ?>,
height: <?php echo $sliderdefultheight ; ?>,
play: {
active: <?php echo $pausedefulthover; ?>,
auto: <?php echo $autopalytrue; ?>,
interval: <?php echo $autoplaydefultspeed; ?>,
swap: true
},
pagination: {
active: <?php echo $paginationtrue; ?>
},
navigation: {
active: false
}
});
});
</script>
Here i have added `navigation: {
active: false
}`
to make the navigation false
Thanks