XF 2.1 fontawesome problem

wakon5544

Active member
hello some appear while others do not. version 2.1.4 where could not solve the problem.


1570930077088.webp

1570930149596.webp
 
Last edited:
It looks like you are trying to use brands. You will probably find the following thread useful. This gets asked often enough it could almost be worthy of an entry in the user manual (if it isn't already).

 
Less:
&:before
{
   .m-faBase('Brands');
   .m-faContent(@fa-var-facebook);
}

Or if you want a Pro icon of a specific style:
Less:
&:before
{
   .m-faBase('Pro', @faWeight-solid);
   .m-faContent(@fa-var-bookmark);
}


sabit

Less:
.fa-410::before {
    content: "\f15a" !important;
    .m-faBase('Brands') !important;
}
 
Top Bottom