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?
Hey!
Try adding this code to the Quick CSS:
.bar-outer {
background: red !important;
}
Change red by the color of your choice.
Cheers!
Josue
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?
Hey!
You can use this:
.avia-progress-bar .progressbar-title-wrap {
background: red;
background: rgba(255, 255, 60, 0.5);
}
Cheers!
Ismael
Thank you that worked perfectly!