I am using font awesome(4.0.3) and bootstrap(3.0.0) and I just want to change the font. But there is a problem. All the css-classes like "fa fa-group" from "font awesome" are not going to be displayed anymore,instead there is a small rectangle with the Unicode sign in it like "F06E"(seperated in 2 lines) (The text is formated, but the symbols are going to be converted to unicode-text).
HTML:
<li class="dropdown">
<a href="@Url.Action( "Management", "MasterData")" class="dropdown-toggle"><i class="fa fa-cog"></i> Stammdaten</a>
<ul class="dropdown-menu">
<li>@Html.ActionLink(" Verwaltung", "Management", "MasterData", null, new { @class = "fa fa-group" })</li>
</ul>
</li>
CSS:
.navbar .nav li a {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif ;
text-decoration:underline;
}
What can I do ?!
Best regards Martin