XF 2.2 Does XF block trademarked fontawesome icons?

beerForo

Well-known member
So I want a Link Forum to link to Instagram but the Instagram node icon appears as a blank space. I had to resort to using the hashtag icon (not ideal). I tested the Microsoft Windows icon and it also appears blank. So XF appears to be blocking the TMed icons but this only happens with node icons, I can put them, for example, in the header just fine.

We should have the ability to create a social menu.
 
Solution
For brand icons you'll need to call the base mixin (.m-faBase('Brands')) to use the brand font. You should also likely be using .m-faContent(@fa-var-blah) for ease of upgrading.
Alright so my forum that is still 2.2, in extra.less:
This works (hashtag):
Code:
.node--idx.node--link .node-icon i:before {
    content: "\f292";
}
This shows a blank space:
Code:
.node--idx.node--link .node-icon i:before {
    content: "\f16d";
}
"x" = forum id
 
For brand icons you'll need to call the base mixin (.m-faBase('Brands')) to use the brand font. You should also likely be using .m-faContent(@fa-var-blah) for ease of upgrading.
 
Solution
Back
Top Bottom