Eric Fernandez
Results
2
comments of
Eric Fernandez
Think the best solution for now is to use your own svg image and add the spacing on the actual svg image. The background image repeats and there is no...
Removing the `data-glide-el="controls"` and adding this worked for me. ```js const glideArrows = document.querySelectorAll('.slider__arrow') glideArrows.forEach(function(glideArrow) { glideArrow.addEventListener('click', function() { glide.go(glideArrow.dataset.glideDir) }) }) ```