I have both the glyph fonts installed and used in my MVC.net web application, some of the contents in classes are common e.g. e005 is used for different icon in kendo and for different icon in font-awesome.
.k-i-arrow-60-right:before {
content: "\e005";
}
so by default above class should show me an arrow icon, it shows faucets icon from font-awesome.
to overcome this, i need to specify the font-file for every such class
.k-i-arrow-60-right:before {
content: "\e005";
font-family: WebComponentsIcons;
}
i want to avoid this.
any help will be appriciated.