wbroda
Hi,
You can customize a little bit in PHP & CSS to achieve that:
Change the type of current image option: go to file: root/templates/ja_fit/acm/features-intro/tmpl/style-1.xml
Look for this field:
<field name="ft-icon" type="media" default="" label="FEATURES_FONT_ICON_LABEL" description="FEATURES_FONT_ICON_DESC" />
change the type="media" to type="text"
Render the icon in the module instead of image: replace this line of code (or simply comment it for backup)
<img src="<?php echo $helper->get('ft-icon', $i) ; ?>" alt="Icon intro" />
by this one:
<i class="<?php echo $helper->get('ft-icon', $i) ; ?>" aria-hidden="true"></i>
Now, go to backend settings of this module and add your own FA icons for each item: http://prntscr.com/k51qdg
Then style for it as by default, the template provides style for image in that place only so you will have to customize style for it.