Hi. I’m looking for where this is controlled. With the big image/thumbnail animation, each image fades out completely before the next comes in… I’d love to tweak the way this displays, possibly just to speed up the transition, but I can’t find where it’s controlled… I’m assuming it would be some kind of CSS transition property, but I don’t see it anywhere in the theme.
Here’s the page:
http://subterranea.net/vusa2/products/harmen-32-es-1432/
Hey hughjames!
Please go to wp-content\themes\enfold\js folder and open shortcodes.js file and find
big_prev.stop().animate({opacity:0}, function()
{
big_prev.html(next_img);
big_prev.animate({opacity:1});
and change it to
big_prev.stop().animate({opacity:0.5}, function()
{
big_prev.html(next_img);
big_prev.animate({opacity:1});
Best regards,
Yigit