How do I change the color of the progress bar? | XM Community
Solved

How do I change the color of the progress bar?

  • 8 December 2017
  • 3 replies
  • 292 views

Userlevel 3
Badge +1
How do I change the color of the progress bar?
icon

Best answer by AnthonyR 8 December 2017, 22:30

View original

3 replies

Userlevel 7
Badge +7
Open your Look and Feel Menu
Selecting the "Advanced" tab
Click on the green "Add Custom CSS" button
Paste the following in to the box that appears:

.ProgressBarFill{
background-color: green;
}

Update "green" to the html color code of your choice!
Badge
FYI for future users - the coding may have changed since this was posted. I got it to work with:

> .Skin .ProgressBarFill {
> background-color: green;
> }
Badge

Another update for future users, I needed to employ the !important declaration in my code for it to work.
.Skin .ProgressBarFill {
background-color: green !important;
}

Leave a Reply