Html Fontwitch图标不显示,但其他图标工作正常

Html Fontwitch图标不显示,但其他图标工作正常,html,Html,我的抽搐图标未显示。以前完全没问题,现在它只是随机消失了。我什么都没变 以下是我的html代码: <div class="text-center center-block" style="margin-top:-40px;"><br/> <h1>Follow us!</h1> <a href="http://facebook.com/facebook"><i clas

我的抽搐图标未显示。以前完全没问题,现在它只是随机消失了。我什么都没变

以下是我的html代码:

        <div class="text-center center-block" style="margin-top:-40px;"><br/>
            <h1>Follow us!</h1>
            <a href="http://facebook.com/facebook"><i class="fa fa-facebook-square fa-4x"></i></a>
            <a href="https://plus.google.com/u/google/"><i class="fa fa-google-plus-square fa-4x"></i></a>
            <a href="http://twitter.com/twitter"><i class="fa fa-twitter-square fa-4x"></i></a>
        <br/>
            <a href="http://steamcommunity.com/groups/steam"><i class="fa fa-steam-square fa-4x"></i></a>
            <a href="http://youtube.com/youtube"><i class="fa fa-youtube-play fa-4x"></i></a>
            <a href="http://twitch.tv/twitch"><i class="fa fa-twitch fa-4x"></i></a>
        </div>

跟我们来!
我不明白为什么它会随机消失。我有最新的字体真棒,并将其包含在我的标题中,如下所示:

<link rel="stylesheet" href="<?php echo bloginfo('template_directory'); ?>/font-awesome-4.2.0/css/font-awesome.min.css">

在字体页面上的品牌图标部分,它说:

警告


显然,Adblock Plus可以通过其“删除社交媒体按钮”设置删除字体很棒的品牌图标。我们不会使用黑客来强迫他们展示。如果您认为这是一个错误,请使用Adblock Plus报告一个问题。要解决这个问题,您需要修改社交图标类名。

我也有同样的问题,更新版本后加载的是一个过时的Font Awesome版本。

好吧,这个问题很老了,可能还有一些答案,但是对于那些正在使用新版本的Font Aweasome(如v5)并且有相同问题的用户,我在撰写本文时的当前版本是
v5.0.13

确保将CSS设置为
font-weight:900

e、 g。
i.fab{font-weight:900}

请注意,
font-weight
不是
bold
,而是
900

这对我有用


欲了解更多信息,请访问

这对我来说很有效,也许值得检查官方网站上的一些要点。是的,我检查过了,没有一个能解决我的问题。我真的很困惑,它工作得很好,然后什么都没有..嘿,是的,我知道这一点。我一直禁用adblock,所以这不是问题所在。只是为了确保我完全禁用了adblock,但没有任何效果。这是我的问题,谢谢提醒(关于adblock)!