Hi there,
Just tested it, works fine, looks like you forgot to add a class suffix
custom-accordion
If you need to add this JS to all accordions on site (without class suffix), use this js
jQuery("document").ready(function($){
jQuery('.ba-item-accordion').on('shown', function(e){
var position = jQuery('a[href="#'+e.target.id+'"]').offset().top;
jQuery('html, body').animate({
scrollTop: position
}, 'slow');
});
});
Regards,
Artem, Balbooa.com