Check out this JSFiddle link for the code.
I am trying to adjust the vertical margin width between specific columns. I attempted to add a margin between my col-xs-4
and col-lg-4
by using mr-4
.
<div class="container-fluid">
<div class="row">
<div class="col-4 col-xs-4 col-lg-4 mr-4">Logo</div>
<div class="col-8 col-xs-8 col-lg-8">Title</div>
</div>
However, this caused alignment issues in XS mode as the columns no longer fit properly, and in LG mode the columns wrap to the next line. I am aiming to achieve a similar layout to the following images in both responsive XS and LG views: