Viewing 3 replies - 1 through 3 (of 3 total)
  • 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
    }

    },

    Thread Starter switch2mithun

    (@switch2mithun)

    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!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Add smooth fade effect’ is closed to new replies.