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