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