Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #474401

    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?

    #474419

    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

    #474424

    Thanks Yigit!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Font Awesome Icons not showing’ is closed to new replies.