We use SVG icons and Icons font for socials but you can easily change it with font icons or image.
Before replacing SVG Icons please check correct classes for SimpleLine Icons and FontAwesome Icons.
To replace current SVG icon follow next steps:
- Remove SVG icon markup in Header email link:
<svg class="icon icon-secondary" role="img">
<use xlink:href="images/svg/sprite.svg#phone-call"></use>
</svg>
- Add span tag with
icon icon-lg icon-primary
classes and insert your icon inside it:<span class="icon-lg icon fa-twitter"></span>
After that you should see the following:
-
If you want to replace default SVG icon with an image just put your image inside it:
<span class="icon icon-lg">
<img src="assets/images/logo.png" alt="">
</span>