Can someone please assist me with aligning two images side by side in a footer using bootstrap? I have tried offsetting the columns but the images keep stacking on top of each other instead of next to each other.
<div class="row">
<div class="col-xs-offset-5 col-xs-1">
<a href="https://www.instagram.com/thesmilecollective_/">
<img src="Insta_link.png">
</a>
</div>
<div class="col-xs-offset-6 col-xs-1" id="twitter_img">
<a href="https://twitter.com/Adsthelad345">
<img src="twitter_link.png">
</a>
</div>
</div>
I would greatly appreciate any assistance in solving this issue.