How to put a progress bar on the left?
Hey guys! Well, I'm creating a CMS theme, but I'm having a question. I got the progress bar code in Bootstrap, but I wanted it to be left aligned, not in the middle ... Can anyone help me? The code: <div class="well"> <h4>Disk Space Used</h4> <div class="progress"> <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;"> 60% </div> </div> <h4>Bandwidth Used</h4> <div class="progress"> <div class="progress-bar" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%;"> 40% </div> </div>