Hello everyone, I'm having a bit of trouble working with Bootstrap. My goal is to create a container with a row that contains three columns of equal width:
<div class="row">
<div class="col-md-4" style="background:red;">logo</div>
<div class="col-md-4" style="background:blue;">content</div>
<div class="col-md-4" style="background:yellow;">content+imgs</div>
</div>
The issue I'm facing is that I want the 'logo' column to be in the second position (after 'content') on XS/SM devices or when resizing the browser window. I've tried using push and pull, but I want the columns to stack vertically, not horizontally like on MD devices. I'm not sure how to achieve this, any suggestions? :)