ioslider steady in mobiles

Posted in: Newspaper
Post count: 20

Hi! How can I stop the sliding option in the ioslider in the mobile versión?
I´m using an ioslider with a single post, but in the mobile, when I move the finger to the sides, it attempts to slide. The image moves to that side, but it get back in the original place. I want to don´t even try to slide, just stay in his place.

Thanks!

Post count: 7909

Hi,

Please try this custom css in Theme Panel > Custom Css: http://screencast.com/t/AfNtwi0J488s

@media (max-width: 768px) {
.td_normal_slide {
pointer-events: none;
cursor: default;
}
}

Hope this helps!

Post count: 20

Hi! This keep it steady, but doesn’t let me click the slider or title :/
Thanks!

Post count: 7909

Hi,

Please try this css, it should let to click on title: http://screencast.com/t/eXS45NJcb6fZ

.td_normal_slide {
pointer-events: none;
cursor: default;
}
.td_normal_slide .td-sbig-title-wrap a{
pointer-events: auto;
}

Hope this helps!

Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.