How to make the text stand out in the slides and there is no blue outline when pressed? Example here
Here is the JS code itself:
$(document).ready(function () { $('.slider--preview-articles').slick({ infinite: true, slidesToShow: 3, slidesToScroll: 1, dots: true, dotsClass: "slider__dots slider__dots--centered", arrows: false, speed: 500, autoplay: true, autoplaySpeed: 5000, draggable: false, responsive: [ { breakpoint: 1599, settings: { slidesToShow: 2, slidesToScroll: 1 } }, { breakpoint: 991, settings: { slidesToShow: 1 } } ] }); });