How to add images to menu items

You could hack your own icons in with a bit of css:

  1. set the item’s label to ^sawtooth
  2. add this to the widget’s css (or to the root’s css if you’re gonna use it multiple times):
.fa-sawtooth {
  width: 20rem;
  height: 20rem;
  background: url(/* image icon path or base64-encoded image*/);
}
1 Like