Bootstrap 4 counter

Regarding: bootsnipp.com/snippets/4MByn

How can I add text after counter finished? ie 100 % or 34 +

lfokp (-1) - 4 years ago - Reply -1


You can add any class name to your counter class eg: <h2 class="timer count-title count-number plus-sign"

Then add the below CSS code in your stylesheet for before or after:

.plus-sign:before {

content: "+";

}

.satis:after {

content: "+";

}

vahe-hass () - 3 years ago - Reply 0