iFrame Scroll on iOS

When users touch to scroll on iOS mobile devices, if that touch is within an iFrame embed, scrolling does not work. I havent had any luck with wrapping yet - Help. The live page with the embed code can be found here http://purrfectcup.ca/

Hi,

Try to wrap it in a DIV like the following

<div class="scroll-wrapper">
	<iframe src=""></iframe>
</div>

Then add the code below in Theme Options > CSS

.scroll-wrapper {
	-webkit-overflow-scrolling: touch;
  	overflow-y: scroll;

	/* important:  dimensions or positioning here! */
}

For more information kindly refer to the link below

Hope this helps

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