Home › Forums › CSS › disabling the button on a few carousal images › Reply To: disabling the button on a few carousal images
March 10, 2018 at 5:31 am
#268105
Participant
I’m on my phone so I can’t look at your html but you should be able to use something like this to hide all but the last item.
selector:not(:last-child) {
display:none;
}