How to remove borders from the slideshow

Hi, I want to remove all borders from my slideshow, how can I do that? I mean the ones around the arrows, image frames, etc.

I already used this code, but it only worked on mobile, not sure why.

.slideshow__controls {
    border: 0 !important;
}

.slideshow__autoplay.slider-button {
    border-left: 0 !important;
}

Here’s my store: https://creationwithtim.com/products/cinematiq-lut-collection-copy
(Just scroll all the way down there’s the slideshow)

Thanks,

Tim

Add this css

@media screen and (min-width: 750px) {

.slideshow__controls {

position: relative;

border: none;

}

}

Hi @CreatorTim

Check your Base.css file where you paste the code.

Add 1 closing bracket } on the 4289 line.

And Save. Let me know if your still having problem. THanks!

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Thanks bro! You’re legend