I am just beginning to explore bootstrap and currently working on a website using it. I need assistance in aligning small images in a single row for the mobile view. The code I have been using is as follows:
<div class="mobile">
<div class="container">
<div class="row">
<div class="col-sm-1 col-xs-1">
<a href="shop"><img src="assets/img/icon/birthday.png" alt="" style="height: 50px; width: 50px;"><p style="text-transform: uppercase;"><b>Birthday</b></p></a>
</div>
<div class="col-sm-1 col-xs-1">
<a href="shop"><img src="assets/img/icon/birthday.png" alt="" style="height: 50px; width: 50px;"><p style="text-transform: uppercase;"><b>Birthday</b></p></a>
</div>
</div>
</div>
</div>
However, the current result appears stacked instead of side by side as I intended. You can see the outcome here.
If anyone could offer guidance on achieving the desired alignment for the images, that would be greatly appreciated.
Thank you in advance