Okay
  Public Ticket #2610606
Font Awesome
Closed

Comments

  •  2
    Erikari started the conversation

    Hello,

    Salient uses Font Awesome for icons, but it's using v4.7
    In v5> there's the patreon icon: https://fontawesome.com/icons/patreon?style=brands

    I need to be able to use that icon in your page builder:

    http://prntscr.com/vp9dbp


    Is there a way to get an updated version that works in the icons section?

    Or as an alternative, a way for me to manually add the patreon svg I downloaded from font awesome and have it appear there?

    Thank you

  •  2,963
    Andrew replied

    Hi Erikari,

    Use this plugin to add the latest version of FontAwesome: https://wordpress.org/plugins/font-awesome/ . 

    Use the following custom css to replace one existing icon like handshake:

    .fa-handshake-o:before {
        content: '\f3d9' !important;
        font-family: 'FontAwesome';
    }
    

    9738971685.png


    Thanks.

  •  2
    Erikari replied

    Hello, thank you so much for the quick answer!

    For peeps who will also look for this answer, or future me, I found that using this code worked everywhere, also in the icons in the header menu for example:

    .fa-dribbble::before, .fa .fa-dribbble::after {
        content: '\f3d9' !important;
        font-family: 'FontAwesome';
    }

    (there was a ":" missing)

  •  2,963
    Andrew replied

    Hi Erikari,

    Thank you for this helpful information.

    Kind Regards.