Disabling prev/next navigation for classic slider on mobile

Hello, I am having an issue with the classic slider buttons on mobile being too large that they cover too much of the slider itself. I would like to disable them for mobile and I assume there is css to insert into the element. Any help is appreciated. Thank you.

Hi Buck,

To hide those slider buttons please try adding this custom CSS:

@media(max-width: 480px){
.flex-control-nav, .flex-direction-nav {
    display: none;
}
}

Hope this helps.

1 Like

thank you!

You’re most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.