• Hi there

    Can anyone help me disable the evolve bootstrap slider on mobile phones only? I’ve tried putting the following in ‘edit CSS’
    @media screen and (max-width: 790px) {
    .flexslider {
    display: none;
    }
    }

    And also using max-width: 767px.

    But it doesn’t work. I’d be grateful for any advice.

    Thanks in advance.

    Alex

Viewing 1 replies (of 1 total)
  • Hi,

    I think your css code is correct, only the ID is wrong.
    Bootstrap slider is #bootstrap-slider and not .flexslider

    Please try out the following.

    @media screen and (max-width: 768px) {
     #bootstrap-slider {
      display: none !important;
     }
    }

    Thanks!

Viewing 1 replies (of 1 total)
  • The topic ‘Disable slider on mobile’ is closed to new replies.