ContextMenu2 how to change the font?

ContextMenu2 how to change the font?

I've searched and searched for an example of how to change the font for the contextMenu2? All I find are topics on Awsomefont icons. I'd like to change the popup menu font to Courier New.

Thank you for any help.

  1. $(function() {
  2. $.contextMenu({
  3. selector: '#idqset',
  4. trigger: 'left',
  5. font-family: 'Courier New',//<--- does not work
  6. callback: function(key, options) {
  7. },
  8. items: {
  9. "100": {name: "\\ Show current weight to max weight line"},
  10. "200": {name: "+ Show CG crosshairs"},
  11. "300": {name: "Show maximum weights"},
  12. "400": {name: "Show light gray Vertical CG lines"},
  13. }
  14. });
  15. });