I am currently constructing a static e-commerce platform using bootstrap. My goal is to have 2 products displayed in a row when viewed on a phone, and 4 products showcased in a row for desktop or iPad users.
<div class="container">
<div class="row product">
<div class="col-md-3">
<div class="image">
<a href="products.php?q=10020" target="_blank"><img id="10030" src="#"></a>
</div>
</div>
<div class="col-md-3">
<div class="image">
<a href="products.php?q=10020" target="_blank"><img id="10030" src="#"></a>
</div>
</div>
<div class="col-md-3">
<div class="image">
<a href="products.php?q=10020" target="_blank"><img id="10030" src="#"></a>
</div>
</div>
<div class="col-md-3">
<div class="image">
<a href="products.php?q=10020" target="_blank"><img id="10030" src="#"></a>
</div>
</div>
</div>
Multiple rows are featured on this page layout, presenting me with a challenge that I need assistance in resolving.