Tiggles ツ
5/14/2018 - 3:40 PM

collection scrolltop

Using the Next and Prev arrow will force the page to bring the new entry to the top, so that user is not looking at the footer of the next/prev item.

jQ171('body').on( "click", "a[href*='#item=']", function( event ) {
  $('html, body').animate({
    scrollTop: $('#breadcrumb').offset().top - 100
  }, 1000);
});