Page scrolls weird when using tour element

Hello,

We are using the Tour element in the X theme with the icon stack. When you click on the vertical tabs the page quickly scrolls down and then scrolls back up but doesn’t stop at the top of the element. So every time you click on a tab you have to then scroll to see the content. Is there a way to change this? You can see the page below.

http://www.leapoffaithartsministries.org/classes-by-age/#1498964461712-1c81282e-8387

Thanks, Steve

Hello,

Please, to check it, could you post some logins details in a secure note and we`d be happy to take a look.

P.S: You can search by “secure note” on this article if you don`t know about this: https://theme.co/apex/forum/t/themeco-support-overview/288

Hello There,

Thanks for writing in! I can confirmed that the issue is present in your site. To resolve this, please add this JS code in the Theme Options > Global JS (http://prntscr.com/evswzb) or in the customizer, Appearance > Customize > Custom > Edit GLOBAL Javascript

jQuery( function($) {
	$('.vc_tta-tab a').on('click', function( e ){
		setTimeout( function() { 
			$('html, body').stop().stop();
		}, 100 );
	});
	$(document).ready(function() {
		$('.vc_tta.vc_general .vc_tta-panel-title > a, .vc_tta.vc_general .vc_tta-panel-title > a, .vc_tta-tab a').off('click touchstart touchend');
	});

});

Please let us know if this works out for you.