Adding a "$" to counter?

Hi, I am trying to figure out how to add a dollar sign ($) in front of the numbers displayed through the counter. I’ve searched all the related files - front-page-counter.php, functions.php, count-to.js - but I just want find where the inline span style html is. I’m not savy enough with JS to do this, unless the step-by-step instructions are pretty clear.

I can do what I’m looking to do if I can just find the code that handles the inline <span> tag:
<span class=“counter-number” data-from=“1” data-to=“9849” data-speed=“5000” data-refresh-interval=“100”>9849</span>

Thanks for all your help. Website is http://hoops4heroes.org.

Hi @tommycopeland,

Did you try css instead?

use this css:

.widget_illdy_counter span.counter-number:after {
    content: "$";
    display: inline-block;
    margin-left: 10px;
}

Thanks,

Cristian

Didn’t even think of it. Perfect. Thanks!

Hi @tommycopeland,

You’re welcome,

Cristian