I am looking to customize the appearance of the currently active slide by giving it an orange border.
Keep in mind that the class for the active slide is : slick-active
and the structure is as follows :
<div class='slick-slide slick-active' ...>
My approach so far is:
jQuery
$('div').find('.slick-active').css('border', 'orange 3px solid');
Unfortunately, I have not been able to successfully apply this styling. Any assistance would be greatly appreciated.
Update:
After correcting my jQuery syntax error, I was able to get the border to show up, but it's not the effect I was going for originally.
Current result :
Check out my JSFiddle