• Resolved goddessprojects

    (@goddessprojects)


    Greetings,

    Can you please tell me how to make the header images slideshow have a FADE TRANSITION ONLY?

    In other words, we would like the images to fade from one into the other and NOT any of the other transitions.

    Thank you!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author GhozyLab

    (@ghozylab)

    Hello,

    You can edit the file named zoom-theme.js from wp-content/themes/zoom-lite/assets/js/

    Go to line 235 and replace the following code :

    $('.zoom-image-slider').nivoSlider({
    	pauseTime: parseInt(zoom_opt.slider_intv),
    	controlNav: false,
    	afterLoad: function(){
    		rePosNav();
    		},
    	beforeChange: function(){
    		rePosNav();
    		},
    	afterChange: function(){
    		rePosNav();
    		},
    
    });

    with this code:

    $('.zoom-image-slider').nivoSlider({
    	pauseTime: parseInt(zoom_opt.slider_intv),
    	controlNav: false,
    	effect: 'fade',
    	afterLoad: function(){
    		rePosNav();
    		},
    	beforeChange: function(){
    		rePosNav();
    		},
    	afterChange: function(){
    		rePosNav();
    		}
    });
    Thread Starter goddessprojects

    (@goddessprojects)

    Thank you,thank you,thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change Header Slideshow Transitions to Fade ONLY?’ is closed to new replies.