I am trying to create a bootstrap panel that includes two images and text all on the same row. However, using display:inline-block;
and display:inline;
did not work as expected in this case.
<div class="panel panel-default">
<div class="panel-heading"><b>Owner</b></div>
<div class="panel-body" id="owners">
<img src="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/40/405b7b5da64cc1dbcb68110ca5e65a9c751b79a0_full.jpg" height="64"><h4>Firav</h4>
<img src="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/66/66cd4ded6f8bc2761f64c110ff8f8b93e568082e_full.jpg" height="64"><h4>Donnyy</h4>
</div>
</div>
<br>