Currently, I am implementing a survey progress bar using Bootstrap's "loading" style. Here is the code for the progress bar:
<div class="progress" style="height: 20px;">
<div class="progress-bar" role="progressbar" style="width: 25%;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
</div>
However, I want to modify the progress bar to display as dots instead of a solid bar. Each step in the survey should be represented by a dot similar to this image:
https://i.sstatic.net/QmYQh.png
I have searched the Bootstrap documentation and tried various CSS styles, but I haven't found a simple way to achieve the dot style. Can someone provide guidance on how to change the progress bar to show dots rather than a solid bar? Any assistance or code examples would be greatly appreciated.