Trying to design a front page layout for a takeout restaurant.
Encountering an issue where the last row doesn't align properly due to a double-height element.
Here is the code snippet:
<div class="row">
<a class="col-md-3 img-box img-hover" href="#">
<img class="img-responsive" src="http://placehold.it/480x900">
</a>
<div class="col-md-9">
<div class="row">
(remaining code here)
</div>
<div class="row">
(remaining code here)
</div>
<div class="row">
(last elements of the code here)
</div>
</div>
</div>
Attached screenshot of the problem: https://i.stack.imgur.com/b4t1Y.png
Any suggestions on how to make the last two elements fit in the same row as the rest?