Resize text-+=
Picture of livvy3

livvy3

More articles by livvy3

It seems we can't find what you're looking for.

Subscribe to our newsletter

Enter your details to stay up to date with our news and programs. You can unsubscribe at any time.

  • This field is for validation purposes and should be left unchanged.
function scrollGallery(amount) { const container = document.querySelector('.eael-scrollable-filters ul'); if (container) { container.scrollBy({ left: amount, behavior: 'smooth' }); } } // On page load, move the actual ul inside our scroll container document.addEventListener('DOMContentLoaded', function () { const originalUl = document.querySelector('.eael-filter-gallery-control ul'); const scrollWrapper = document.querySelector('.eael-scrollable-filters'); if (originalUl && scrollWrapper) { scrollWrapper.appendChild(originalUl); } });