I need help with getting Bootstrap layout as per image below. I cant figure out how to get the yellow bar to appear with the full width of the Bootstrap container without affecting the way the columns should stack up on the mobile view (second image).
So I dont need the yellow bar to be displayed on mobile view but the order of how the columns stack up has to be preserved. I have tried inserting a div in the middle column and force it to go outside of it but it didnt really work (the closest I got was with negative margin but that just overlaps the other columns and I dont really know exact number I should apply for each margin to make it look good).
Below is my HTML structure - I have removed the yellow bar part as I dont really know where it should go...
<div class="col-md-4">
col 1 header<br/>col 1 contents
</div>
<div class="col-md-4">
col 2 header<br/>col 2 contents
</div>
<div class="col-md-4">
col 3 header<br/>col 3 contents
</div>
If anyone can advise if thats possible to do with Bootstrap and give me some direction it would be much appreciated.