I am attempting to achieve a similar effect to the one displayed here, with a white line and circles running down the center of a single-page layout, using bootstrap 3.
My initial thought was to have a column with a right border spanning the entire layout using md-col-6
. However, this layout would not accommodate my content, such as a centered image element. Is there a way to create this effect responsively without disrupting my current bootstrap grid layout? It would be ideal to find a generic method for achieving this, possibly by overlaying another grid (if feasible). If not, below is a snippet of my existing layout:
<div class="container fullheight" >
<div class="row text-center">
<div class="col-sm-12">
<h2>Title</h2>
<h3 style="font-size:46px;">2012</h3>
</div>
</div>
<div class="row width90">
<div class="col-sm-5 col-md-7"></div>
<div class="col-sm-7 col-md-5 right-fact">
<h3>Tile</h3>
<p>Description</p>
</div>
</div>
<div class="row text-center"> <img src="Images/Image1.svg" alt="Image" height="450px"> </div>
<div class="row width90">
<div class="col-sm-7 col-md-5 left-fact">
<h3>Title</h3>
<p>Description</p>
</div>
</div>
</div>
<!-- Repeat these sections to create a one-page website effect -->