Okay
  Public Ticket #1171538
Adding extra social icons header & footer
Closed

Comments

  •  4
    Zenako started the conversation

    Hi guys, I was wondering if you could point me in the right direction - I wish to add an extra social IMDB icon to the footer & header areas of my website (latest version of salient).

    Preferably a method that won't cause breakages or be lost during updates :)

    Best regards,

    Zenako

  •  9,011
    Tahir replied

    Hey Again,

    You can replace the existing icons using custom css . 

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    /* change vk icon to imdb  */
    .fa-vk:before {
        content: "\f2d8" !important;
    }
    #header-outer #social-in-menu .fa-vk:after {
        content: "\f2d8" !important;
    }
    

    Thanks



    ThemeNectar Support Team 

  •  4
    Zenako replied

    Thanks Tahir, great solution much appreciated.