I have been working on implementing a step progress bar for the desktop version. I am trying to achieve a horizontal layout similar to https://i.sstatic.net/r8tfz.jpg
Here is the fiddle where you can see my progress - https://jsfiddle.net/Durairaj1696/k1cdmhsj/1/
This is the code I have so far:
<ul class="StepProgress" style="float:left;">
<li data-target="#myCarousel" data-slide-to="0" class="StepProgress-item active">
</li>
<li data-target="#myCarousel" data-slide-to="1" class="StepProgress-item">
</li>
<li data-target="#myCarousel" data-slide-to="2" class="StepProgress-item">
</li>
<li data-target="#myCarousel" data-slide-to="3" class="StepProgress-item">
</li>
</ul>
Your help and advice are much appreciated!