I have got a menu page with two images. Basically I want the images to appear side by side on the web-browser (centered in a row) and when in mobile view I want them to appear on top of each other (in a column centered). As when the images are side by side in mobile view, they are too small to click.
I have been using framework7 style sheet row and column classes to place the images side by side on the web-browser.
<div class="row">
<div class="col-50">
<a href="page1.html"><img src="css/images/image1.png" height="50%" width="50%"></a>
</div>
<div class="col-50">
<a href="page2.html"><img src="css/images/image2.png" height="50%" width="50%"></a>
</div>
</div>
When on mobile view these images still appear side by side as they do in the web-browser. I am not sure what the best way is to have them stacked when in mobile view. I have been trying a few things but haven't been able to get it working.