Here is what I am trying to achieve using Bootstrap:-
The red lines show the where container div is.
The thing I am having an issue with is the background colours. So for example if I did something as follows:-
<div class="container-fluid">
<div style="background: #888;" class="col-md-8">
left content
</div>
<div style="background: #999;" class="col-md-4">
right content
</div>
</div>
The backgrounds are how I want them to be but the 'left content' and 'right content' would then not be inside the 'container' like the rest of the sites content as shown below:-
How could I achieve this?
I'll explain further if this is not clear enough, thanks.