字体真棒 - Wordpress - 图标显示框

时间:2015-01-21 11:45:15

标签: wordpress font-awesome

我刚刚将Font Awesome粘贴到我的WP主题header.php

的头部

而且我知道字体是有效的,但在HTML中,我认为我犯了一个错误,我只是看不清楚!

http://goo.gl/Yoit33 - 有一排圆形方框,第二排向下,第二排位于右边。

任何帮助我都会非常感激。

1 个答案:

答案 0 :(得分:0)

您需要从.fa标记中删除类.fa-wheelchaira,因为图标实际上是通过i标记加载的。

由此:

<a href="http://www.synaxishosting.co.uk/test/mob/vat-exemption/" class="fa fa-wheelchair icon-5x btn rounded">
    <i class="fa fa-wheelchair"></i>
</a>

To This:

<a href="http://www.synaxishosting.co.uk/test/mob/vat-exemption/" class="icon-5x btn rounded">
    <i class="fa fa-wheelchair"></i>
</a>