Awesome,
Thanks, I was able to get things working with that information.
In case anyone else has a similar need to output the ACF Font Awesome element into a CSS pseudo-element such as “::before”, this is how I implemented it for output from an options panel:
.sidebar-primary .current_page_item:before{
content:”<?php $icon = get_field(‘sidebar_icon’, ‘option’); echo $icon->hex; ?>”;
font-family: FontAwesome !important;
position:relative;
height:30px;
float:left;
}