Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #206583

    Hey there,

    How can I the background behind just the text on the progress bar so it’s transparent or at least matches the colors of the progress bars?
    Progress Bar

    #206592

    Hey!

    Try adding this code to the Quick CSS:

    .bar-outer {
        background: red !important;
    }

    Change red by the color of your choice.

    Cheers! 
    Josue

    #206599

    Thanks Josue,

    It didn’t seem to work for me… I set the color as transparent:

    .bar-outer {
    background: transparent !important;
    }

    The progress bar has three colors,

    1. The color you set for the percentage
    2. The background color of the text you’ve written for a specific percentage
    3. The background color of the bar at 100% width

    I’d like to make #2 transparent. Is that possible?

    #206611

    Hey!

    You can use this:

    .avia-progress-bar .progressbar-title-wrap {
    background: red;
    background: rgba(255, 255, 60, 0.5);
    }

    Cheers!
    Ismael

    #209837

    Thank you that worked perfectly!

    #209884

    Hey!

    Glad it worked. :)

    Cheers!
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Colors Behind Progress Bars’ is closed to new replies.