Author Posts September 2, 2015 at 2:10 pm #376973 Brian BParticipant 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! September 2, 2015 at 6:20 pm #377190 LelyModerator 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. Author Posts