I’ve got several sites built with the Enfold theme. In most of them, I have added a FontAwesome icon next to the phone number in the top menu like so: <i class=”fa fa-phone”></i> (800) 502-0000
This has worked on every site I’ve built with the Enfold theme, however, it’s not working on the site I’m building now. Here is that site:
http://dev.midsouthpackaging.com/
Here is another site I built that has the icon in the top menu using the exact FontAwesome same code:
http://eventpro.lighting/gallery/
Any ideas why this might be happening?
Hey Tracy!
Please add following code to Functions.php file in Appearance > Editor
function font_awesome_styles() {
wp_enqueue_style( 'Font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css' );
}
add_action( 'wp_enqueue_scripts', 'font_awesome_styles' );
Best regards,
Yigit
Thanks Yigit!