You can use Font Awesome icons in dhtmlxMenu.
This possibility can be enabled in two ways:
1) during toolbar initialization
myToolbar = new dhtmlXToolbarObject({
iconset: "awesome",
});
2) after toolbar initialization, using the setIconset method:
myToolbar.setIconset("awesome");
Follow the Font Awesome homepage to learn more about icons.
Back to top