Basically I got 7 "steps" of my progressbar - the default max value is 100 so 100/7 doesn't divide into whole numbers.
Therefore I'd like to change the max value of the progressbar to, for instance, 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've tried changing the aria-valuemax and tried setting data-max but none of them changes anything. How can I change the max value of my Bootstrap progressbar?