Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Design Scrolling iframes & hover drop downs not working on touch devices Reply To: Scrolling iframes & hover drop downs not working on touch devices

#265019
JoTidman
Participant

It’s an IOS glitch. This is the extra piece of CSS I added which fixed it:
NB the width and height are for my iframe sizes. These can obviously be changed for your own size.

    .scroll-wrapper {
        display: inline-block;
        -webkit-overflow-scrolling: touch !important;
        overflow-y: auto !important;
    }
    .scroll-wrapper, .scroll-wrapper  {
        width: 100%;
        height: 500px;
    }