I’m no pro, so take this for what it’s worth. I was able to get the full text to show by adding “position” to the plugin.
To do this, I edited “responsive-progress-bar.php” and changed this:
<div class='rprogress-bar rprogress' style='background: ${bgcolor}'></div><div class='rprogress-text' style='color: ${text_color}'>${text}</div>
To this:
<div class='rprogress-bar rprogress' style='background: ${bgcolor}; position: absolute'></div><div class='rprogress-text' style='color: ${text_color}; position: absolute'>${text}</div>
Please feel free to correct me if there’s a better way. This worked for me…
Brad