0

I am using font-awesome version 4.7. Everything was fine few days back but suddenly few fonts stopped working. Here is the list:

1.fa-television 2.fa-handshake-o 3.fa-product-hunt Can anyone please help me to understand why and how can I fix that? By putting version 5 does not help very much looks like need to make many changes.

.fa-lg {
  font-size: 17px !important;
}

.icon-background2 {
  color: #496360 !important;
}
<li onclick="roomName()" style="top:7px" class="usercss1">
  <a href="#" style="color:#fff;padding: 5px;">
    <span class="fa-stack fa-lg">
      <i class="fa fa-circle fa-stack-2x icon-background2"></i>
      <i class="fa fa-television fa-stack-1x" data-toggle="tooltip" data-placement="bottom" title="collaboration" style="font-size:13px !important;font-weight: 600;" aria-hidden="true"></i>
    </span>
  </a>
</li>

Please find the above code that I am using but it is not displaying television icon as it works for other icons.Please look at the below screenshot

enter image description here.

MLavoie
  • 9,671
  • 41
  • 36
  • 56
vimal mishra
  • 1,087
  • 2
  • 12
  • 32

1 Answers1

0

Here is a link to Font Awesome's Github page. There are various reasons why this could be happening and this link gives you a good starting point to trouble shoot the problem. It could be caused by any css resets, or any css that overrides icon tags. It could possibly be the inline css you are using. Or it could be an extension or plugin within your browser or an ad blocker. Have you checked your console as the page loads and verified that the font files are being loaded properly? Hope this helps a little.