Hi,
I just started using tags on a site using JA Oslo as template. I noticed that on that page the icons next to the search field weren't showing up. Now, the easiest fix, would be to add the FA icons to the classes.
For example:
<button type="button" name="filter-search-button" title="Search" onclick="document.adminForm.submit();" class="btn btn-inverse">
<span class="icon-search"></span>
</button>
would then become:
<button type="button" name="filter-search-button" title="Search" onclick="document.adminForm.submit();" class="btn btn-inverse">
<span class="fa fa-search"></span>
</button>
And similary:
<span class="fa fa-remove"></span>
Now... where should I find this snippet? I have a hard time finding it in the template override...