I have this code
.progress-button .content::before {
content: "\e601";
}
.progress-button .content::after {
content: "\e601";
}
It basically returns the value of "\e601"
into a check mark and "\e600"
into a X
sign, the code works well in normal HTML/CSS but when I implemented it into Bootstrap 3, it shows a square sign instead. Can someone please shed me some lights? Thanks in advance! :)