https://i.sstatic.net/HIGDH.png
I am in the process of designing a layout similar to the one shown above on the top of my webpage. Utilizing Bootstrap 4, I have structured the rows and columns accordingly.
<div class = "row">
<div class = "col-sm-2"> </div>
<div class = "col-sm-1" > Image placeholder</div>
<div class = "col-sm-1" > Image placeholder </div>
<div class = "col-sm-8"></div>
</div>
<div class = "row">
<div class = "col-sm-2"> </div>
<div class = "col-sm-1"> <!-- --> </div>
<div class = "col-sm-5">
<div class="row">Title Text here </div>
<div class="row"> Additional text here </div>
</div>
<div class = "col-sm-4"></div>
</div> `
The main challenge I face is determining the image sizes. I aim for them to preserve a specific aspect ratio and adjust size proportionally for smaller displays. Fixing column sizes and trying to fit images within hasn't yielded desired results. Altering image dimensions itself leads to protrusion from the grid. Additionally, is there a method to control the wrapping point for a column's size?