I am seeking assistance in achieving a Bootstrap layout similar to the image provided below. My difficulty lies in ensuring that the yellow bar spans the full width of the Bootstrap container without disrupting the stacking order of columns on mobile view.
https://i.sstatic.net/rrWaA.png
https://i.sstatic.net/GJTml.png
While I do not want the yellow bar to display on mobile view, it is crucial that the sequence in which the columns stack up remains intact. I have attempted inserting a div within the middle column and trying to extend it beyond, but my efforts have been unsuccessful (the closest result was achieved using negative margins, yet this approach led to overlap issues with other columns due to lack of precise margin values).
Below is a snippet of my HTML structure - the yellow bar part has been excluded as its placement eludes me...
<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 could provide guidance on whether this can be accomplished with Bootstrap and offer some insights, it would be greatly appreciated.