I’ve noticed the “transition speed” on the settings page only works on the slide effect, not on fade. A small change on in the plugins responsive_headerimageslider.php file can solve this (and let you set a more smooth transition).
Search for
effect: {
slide: {
speed: <?php echo $slidedefultspeed; ?>
}
},
and replace it by
effect: {
slide: {
speed: <?php echo $slidedefultspeed; ?>
},
fade: {
speed: <?php echo $slidedefultspeed; ?>,
crossfade:!0
}
},
Hi hsantens,
Sorry for the late response. Its works perfectly in the website. Thank you very much for your help.
hsantens, thank you so much, works like a charm!