Hi
you’ll need to go in and edit the file. Go to dante/swift-framework/shortcodes.php and find this code on line 879:
$service_bar_output .= '<div class="progress-bar-wrap progress-'.$type.'">'. "\n";
if ($colour != "") {
$service_bar_output .= '<div class="bar-text"><span class="bar-name">'.$name.':</span> <span class="progress-value" style="color:'.$colour.'!important;">'.$value.'</span></div>'. "\n";
$service_bar_output .= '<div class="progress '.$type.'">'. "\n";
$service_bar_output .= '<div class="bar" data-value="'.$percentage.'" style="background-color:'.$colour.'!important;">'. "\n";
} else {
$service_bar_output .= '<div class="bar-text"><span class="bar-name">'.$name.':</span> <span class="progress-value">'.$value.'</span></div>'. "\n";
$service_bar_output .= '<div class="progress '.$type.'">'. "\n";
$service_bar_output .= '<div class="bar" data-value="'.$percentage.'">'. "\n";
After $name you’ll see the :
There are 2 instances of this for you to change
– Kyle