Viewing 1 replies (of 1 total)
  • Plugin Support Matheus Martins

    (@matheusfd)

    Hi @adriano0208,

    Happy to help you!

    The progress bar doesn’t change the color because there is a CSS code on your site to set another color to all the progress bars on it.

    The CSS can be found at /wp-content/themes/oxpitan/css/template.css?ver=1.0.4, line 8118. This is the code you have on your site:

    .give__progress .give__progress-bar {
      -webkit-transition: width 1s ease-in-out;
      transition: width 1s ease-in-out;
      -moz-transition: width 1s ease-in-out;
      -ms-transition: width 1s ease-in-out;
      height: 10px;
      background: #F1AE44;
      position: relative;
      display: block;
      width: 0;
    }

    You may need to change the color of the background of the progress bar.

    Please let us know if you have further questions on this or need any additional assistance!

Viewing 1 replies (of 1 total)
  • The topic ‘progress bar doesnt change color’ is closed to new replies.