How to disable Nivo Slider navigation control on mobile device

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
5 years ago
Is it possible to disable navigation control just for mobile device?
I know that can be disabled in nivo slider settings for all devices but I wander how to disable it just for mobile.
Also reposition on mobile device will solve my problem.
5 years ago
bulb wrote:
Is it possible to disable navigation control just for mobile device?
I know that can be disabled in nivo slider settings for all devices but I wander how to disable it just for mobile.
Also reposition on mobile device will solve my problem.



Hi, BULB

You can disable navigation control just for mobile device using css code. if you want put this css code in the end of style.css file



@media all and (max-width: 768px) {
    .theme-custom .nivo-controlNav {
        display: none;
    }
}
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.