Please help me to understand.
There are two cases of strange behavior "Awesome Font".
1. I use the built-in editor to edit K2.Item article in HTML. As a result, an editor removes all empty tags: "<i class="icon-CLASS_NAME"> </ i>". The editor leave the tag if it is not empty. At the same time replaces the tag "i" to a tag "me". How to turn off such tag remove and tag replacement?
2. Since it is impossible to add tags "<i class="icon-CLASS_NAME"> </ i>" through the editor (see point 1), then I added them directly to a database table. However, when you view the page in front of the list items are displayed tick "v". I used the following code:
<div class="demo-typo-col4">
<ul class="the-icons">
<li><i class="icon-hand-down"></i> icon-hand-down</li>
<li><i class="icon-hand-left"></i> icon-hand-left</li>
<li><i class="icon-hand-right"></i> icon-hand-right</li>
<li><i class="icon-hand-up"></i> icon-hand-up</li>
<li><i class="icon-circle"></i> icon-circle</li>
<li><i class="icon-circle-blank"></i> icon-circle-blank</li>
</ul>
</div>
How do I make lists such as the on website "http://demo.gavick.com/joomla25/creativity/index.php/typography" (Without check marks "v")?