Hello,
I try to use some web font icons on my project buttons but found many of them showed as same black small triangle. for example 'k-i-search' displayed as expected. but 'k-i-folder-open' and many others always showed as black triangle. Could any one tell me how to resolve the issue?
Thanks.
@(Html.Kendo().Button()
.Name("search")
.Tag("span")
.Content("Search")
.Icon("k-icon k-i-search") <--Good
)
@(Html.Kendo().Button()
.Name("open")
.Tag("span")
.Content("Open")
.Icon("k-icon k-i-folder-open") <--showed black triangle
)