Edit content/condext/right click menu

User Help for Mozilla Firefox
Locked
silkmaze
Posts: 22
Joined: July 17th, 2004, 8:28 pm

Edit content/condext/right click menu

Post by silkmaze »

Is it possible to edit the menu that drops down when right clicking? I want to be able to change where certain commands/options appear in the menu, re-arrange it to suit my work a bit more.

Thanks
morat
Posts: 6437
Joined: February 3rd, 2009, 6:29 pm

Re: Edit content/condext/right click menu

Post by morat »

You can change the order with the userChrome.css file.

Example:

Code: Select all

/* Firefox userChrome.css */

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* reverse order of Work Offline and Exit in File menu */

#goOfflineMenuitem { -moz-box-ordinal-group: 2 !important; }
#menu_FileQuitItem { -moz-box-ordinal-group: 1 !important; }
http://kb.mozillazine.org/UserContent.css

CSS Reference
http://developer.mozilla.org/en-US/docs ... inal-group
Locked