Hi Ryan,
Well, responsive design is not really meant for desktops, resizing the browser window and such. Instead, this is meant for mobile devices where, obviously, window resizing won’t happen.
Same with accordions, they don’t include such functionality because it’s not a real life scenario.
You could add custom jQuery to do something when clicking an accordion header,
$(".ui-accordion-header").on("click", function(){
var accOffset = $(this).offset().top;
$('html, body').animate({
scrollTop: accOffset-10
}, 500);
});
Now this is just off the top of my head, not tested – but this would be the idea. You could add something like that in a RAW JS element on that page.
Regards,
————————————————————————————————————
Cosmin – Support