This is the layout I am aiming for:
https://i.sstatic.net/4LgVB.png
Below is the code I currently have:
<div class="row ">
<div class="col-lg-6 row-eq-height push-right">
<img src="1.jpg" class="img-responsive">
</div>
<div class="col-lg-6 row-eq-height">
<div class="eq-row-text ">
<p class="row-text">Text description for image </p>
</div>
</div>
</div>
<div class="row ">
<div class="col-lg-6 row-eq-height ">
<div class="eq-row-text ">
<p class="row-text"> Text description for the image </p>
</div>
</div>
<div class="col-lg-6 row-eq-height">
<img src="1.jpg" class="img-responsive>
</div>
</div>
I attempted to use the CSS class "no-padding" and played with margins. With zero padding, the left side of the first image aligns with the browser edge (intended), however there is still empty space on the other edge (right side of image).
How can I eliminate this empty space and achieve a layout similar to the reference?