2015-01-13, 23:14:51
fontawesome normally requires
but CKEditor doesn't like the empty tags so I had used an alternative syntax:
getting the unicode for the icon from here:
http://fortawesome.github.io/Font-Awesom...heatsheet/
There is a post somewhere about altering the config of the editor so that it accepts empty <i> tags if you want to do it that way
Code:
<div class="icon"><i class="fa fa-heart"></i></div>
Code:
<div class="icon"><i class="fa"></i></div>
http://fortawesome.github.io/Font-Awesom...heatsheet/
There is a post somewhere about altering the config of the editor so that it accepts empty <i> tags if you want to do it that way