3
I’m using a template that uses Font Awesome icons, so far so good! But when I want to change the icon, I follow the documentation instructions and it doesn’t work!
For example, the template code is this:
<li class="wow fadeInRight">
<i class="icon-lock">
</li>
If I want to change to the Facebook icon, for example <i class="icon-lock">
for <i class="fa fa-heart">
and I went to see the CSS and it’s like this:
.icon-lock:before {
content: "\e62a";
}
What does this CSS mean? What is "\e62a"
???
Help me out, please !!!
+1. I even propose that, after passing the prototype phase, it was ideal to take the
<i ...></i>
and put these::before
directly in the appropriate styles - the icon is, in a sense, a decorative part of the page, and it makes no sense to pollute HTML with them.– user25930