Hi there, I'm currently working with a step bar template that you can find at the following link: http://codepen.io/mattdrose/pen/qEZBge
My issue arises when dealing with the complete step, which is represented by the following code:
<li class="is-complete lx-text-table" data-step="✔">
I would like to customize the icon in the data-step
attribute to something like this:
<span class="icon"></span>
Here is the CSS for the complete step section:
.progress_bar > li.is-complete:before, .progress_bar > li.is-complete:after {
color: #FFF;
background: #9bca61;
}
If anyone has any ideas on how I can achieve this customization, I would greatly appreciate it. Thank you in advance.