Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #379553

    hi, is it possible to revert the direction? Currently set up/down and it scrolls bottom to top. Can we change to, top to bottom?

    #380870

    Hey user877!

    Open up /enfold/js/shortcodes.js and find lines 4167 – 4168.

    trans_val 		= ( sliderHeight * direction * -1),
    trans_val2 		= ( sliderHeight * direction);
    

    And change them to this.

    trans_val 		= ( sliderHeight * direction),
    trans_val2 		= ( sliderHeight * direction * -1 );
    

    Regards,
    Elliott

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