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.
- $(function() {
- $.contextMenu({
- selector: '#idqset',
- trigger: 'left',
- font-family: 'Courier New',//<--- does not work
- callback: function(key, options) {
- },
- items: {
- "100": {name: "\\ Show current weight to max weight line"},
- "200": {name: "+ Show CG crosshairs"},
- "300": {name: "Show maximum weights"},
- "400": {name: "Show light gray Vertical CG lines"},
- }
- });
- });