I have successfully implemented a justified block of text within the footer of my Bootstrap HTML page. Now, I want to enhance it by adding two images underneath the text. These images should have the same height but different widths and be aligned to either side.
<footer>
<div class="container">
<div class="row">
<div class="col-md-3">
<span class="copyright">Copyright © Bla Bla 2015</span>
</div>
<div class="col-md-6">
<div class="disclaimer">
<span>Der ritter überladen ie des den der kâmen und. Daz ane waz ie der waz Tristan, lant ende, wol daz, schaden nieman lant benaeme sîne ze der wîp, schaden liute ie. Und diz von, trôstes wârheit haete nieman unde. Iuch meistiu alsô lande ze belanget, vol niht verluren, meistiu er schedelîchen swer ritter ze ie niht ende swer</span>
<img id="logo_left" src="http://s1.postimg.org/j4mav1ikb/logo_left.jpg" class="img-responsive img-left" alt="">
<img id="logo_right" src="http://s1.postimg.org/bda6a83sr/logo_right.jpg" class="img-responsive img-right" alt="">
</div>
</div>
<div class="col-md-3">
<ul class="list-inline legallinks">
<li>
<a href="#modal_legal1" class="legal-link" data-toggle="modal">Legal1</a>
</li>
<li>
<a href="#modal_legal2"class="legal-link" data-toggle="modal">Legal2</a>
</li>
</ul>
</div>
</div>
</div>
Despite my efforts, I am unable to achieve the desired result with the images. Here is the link to the jsfiddle for reference: jsfiddle
Thank you in advance for any assistance provided.