I've developed a listview with items like the template below but when I'm trying to add a second paragraph below the existing one page cannot scroll on iPad. The same page on my desktop works just fine. Does anyone know how can I overcome this issue? Note that the page height is bigger than one page.
<ul>
<li data-icon="carat-d">
<a href="#">
<img src="images/image1.png">
<h2>header</h2>
<p>paragraph1</p>
<p>paragraph2</p> <!-- This line cause the issue -->
</a>
</li>
</ul>
Thanks in advance,