Replace social icons for employees

There are three social links for the employees widget, Facebook, Twitter and Google Plus. The snippets below will help you replace one of the icons with a different icon for a different social network.

To replace the Facebook icon with a Linkedin icon:

.socials .fa-facebook:before {
      content: 'f0e1';
}

To replace the Twitter icon with a Linkedin icon:

.socials .fa-twitter:before {
      content: 'f0e1';
}

To replace the Google Plus icon with a Linkedin icon:

.socials .fa-google-plus:before {
      content: 'f0e1';
}

Tips:

  1. Put the link for your new social network in the field for the network you want to replace;
  2. If you want to use something other than Linkedin, go here, find the code you need and replace it in content: ‘f0e1’
INFO: This is a CSS snippet. If you don’t have a child theme or don’t know how to use one, we recommend that you add this snippet in Customize > Additional CSS.