Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #981267

    Hi there,
    Please see 10sec video for illustration.

    *how to remove this white flashing effect?

    Thank You in advance!

    #981974

    Hey millend,

    Thank you for using Enfold.

    This is possible but you have to modify the config-templatebuilder > aviashortcodes > gallery > gallery.js file. Look for this code around line 55.

    big_prev.stop().animate({opacity:0}, function()
    {
    	$next.insertAfter(oldImg);
    	oldImg.remove();
    	big_prev.animate({opacity:1});
    
    	big_prev.attr('title',$(_self).attr('title'));
    
    });
    

    Replace it with this one.

    big_prev.stop().animate({opacity:0}, function()
    {
    	$next.insertAfter(oldImg);
    	oldImg.remove();
    	big_prev.css({opacity:1});
    
    	big_prev.attr('title',$(_self).attr('title'));
    
    }, 1);

    Best regards,
    Ismael

    #989202

    Will this work with child theme w/ same folder structure? Thnks.

    #989501

    Hi,

    You can’t override the script in a child theme, unfortunately. You have to modify the file directly.

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.