aspnetbootstrap-119989-project-configuration-change-icon-set.md
Visual elements of DevExpress Bootstrap controls display icons from icon fonts.The following icon fonts are supported:
You can use CSS to implement custom icons.
You can use the BootstrapConfigurationSection.IconSet property in the /devExpress/bootstrap web.config section to switch icon sets. For example, set the iconSet property to FontAwesome5 to switch to Font Awesome ver.5 icons:
...
<devExpress>
<bootstrap iconSet="FontAwesome5" />
</devExpress>
...
Note that you should download the Font Awesome icons, add the font and CSS files to your project and link the FontAwesome CSS to your master page:
<head runat="server">
...
<link href="font-awesome/css/font-awesome.css" rel="stylesheet" />
...
</head>
You can use the same approach to switch to the Glyphicons Halflings icon set.
Footnotes