Scroll issues with WP Bakery tabbed content

Hi there,

I’m trying to use the ‘tabbed content’ feature on this page:
http://newsite.blindtrack.co.uk/hand-drawn-curtain-tracks/

As you can see, whenever you click on a tab, it causes the screen to scroll in some random way.
I believe this might be a behaviour originally intended for use in the one-page navigation templates.
What could I do to disable scroll please?

Thanks

Hi There,

To fix this issue, please add this custom code under Theme Options > JS:

jQuery( function($) {

  $(document).on('touchstart click', 'li.vc_tta-tab a,li.vc_tta-tab,.vc_tta-panel-title', function(){
     $('html, body').stop();
  });

});

Hope it helps :slight_smile:

Worked brilliantly Thai, thanks! :thumbsup:

Glad we were able to help :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.