Basically, I got 7 "steps" of my progressbar - the default max value is 100, so 100/7 are not divisible by integers.
Therefore, I would like to change the maximum value of progressbar, for example, 7.
<div id="wizard-progressbar" class="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
<span class="sr-only">0% Complete</span>
</div>
I tried changing aria-valuemax and tried to set data-max , but none of them changed anything. How can I change the maximum value of my Bootstrap panel?
source
share