I am considering implementing the Jquery progress bar to display the user's advancement in a course.
- Within the progress bar, I aim to exhibit the text Course Progress 70%
- Additionally, I wish to alter the default grey color of the progress bar
This is my current progress - allowing me to insert the text at the center of the progress bar:
$(function() { $( "#progressbar" ).progressbar({ value: 70 }); ); <div style="width:600px;" id="progressbar"> <div style="float:left;color:black;text-align:center;width:100%;padding-top:3px;">Course Progress </div>
However, I am having trouble changing the color. It doesn't need to change dynamically - just one non-grey color :)
Thank you