Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #376973

    Brian B
    Participant

    Howdy –

    Using the latest 4.0.7 version of X theme with the included Visual Composer / js composer version 4.6.2.

    When attempting to use “Tabs” the page is scrolled down when clicking the different tabs.

    http://snocross.lab.bsquared-tech.com/fargo-snocross-national/

    I’ve tried implementing javascript recommended in other threads but nothing has worked yet.
    example [maybe unrelated…]: https://theme.co/community/forums/topic/tabs-links-scroll-to-top-of-container/

    Soo it seems like it’s trying to scroll to the ID of the tab content area or something. Is there some simple method to stop this scrolling?

    Thanks!

    #377190

    Lely
    Moderator

    Hello There,

    Please add the following javascript on Appearance > Customize > Custom > Javascript

    jQuery(function($){
    
    $('.vc_tta-tabs-list a').on('click', function(){
    
      $('html, body').stop();
    });
    });

    Hope this helps.