Hi, am I missing something simple? I’m creating a bunch of list items in a text element (or raw content if I decide to do that instead) and I want to place 1 or 2 Font Awesome icons next to a select few. I would have thought that simply doing this would work out of the box:
<ul>
<li data-feature="Some Data">List Item <i class="fa fa-question-circle" aria-hidden="true"></i></li>
<li data-feature="Some Data">List Item <i class="fa fa-question-circle" aria-hidden="true"></i></li>
<li data-feature="Some Data">List Item <i class="fa fa-question-circle" aria-hidden="true"></i></li>
</ul>
but nothing is happening at all. I also tried the newer syntax:
<i class="fas fa-question-circle"></i>
nothing there either. What am I doing wrong? Thanks in advance.