Trying to bring a unique design concept to life, courtesy of my talented graphic designer. However, this sleek look is proving to be quite the challenge as I navigate through bootstrap implementation.
We are focusing on a call to action section that perfectly aligns with the 12 column grid system at its extremes on the left and right sides.
The design also demands that it stretches seamlessly to the view-port edges:
- A bold red background spans all the way to the edge on the left side.
- On the right side, a textured grey background extends stylishly to the view-port edge.
Although I am having trouble finding references or search terms for this particular layout, let alone where to start (apart from utilizing the background in full width for cta, then adding an element overlay on the left).
Any suggestions on how to code the following graphical layout using bootstrap?
<section class="cta" style="background: grey; position: relative">
<div class="red" style="position: absolute; left: 0; width: 10%; background: red"></div>
<div class="text-outer">
<div class="container">
<div class="row">
<div class="col-xs-6">left</div>
<div class="col-xs-6">right</div>
</div>
</div>
</div>
</section>