Menu customization: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
No edit summary
Line 45: Line 45:
Example (hides the "View Background" menu item and the horizontal line after it):
Example (hides the "View Background" menu item and the horizontal line after it):
  #context-viewbgimage,
  #context-viewbgimage,
  #context-sep-viewbgimage
  #context-sep-viewbgimage{
{display: none !important;}
  display: none !important;
}

Revision as of 19:40, 26 May 2004

First you need to locate your profile folder. There's a subfolder called "chrome". What you need to do is edit the userChrome.css file. Create it if it does not exists.

You can hide any context menu items by adding this line to userChrome.css:

#id1, #id2 { display:none !important; }

replacing each of the identifiers #id1, #id2, ... with one of the following:

#context-back
#context-blockimage
#context-bookmarklink
#context-bookmarkpage
#context-copy
#context-copyemail
#context-copyimg
#context-copyimg-contents
#context-copylink
#context-cut
#context-delete
#context-forward
#context-metadata
#context-openlink
#context-openlinkintab
#context-paste
#context-reload
#context-saveimage
#context-savelink
#context-savepage
#context-searchselect
#context-selectall
#context-sendimage
#context-sendlink
#context-sendpage
#context-sep-open
#context-sep-stop
#context-setWallpaper
#context-stop
#context-undo
#context-viewbgimage
#context-viewimage
#context-viewinfo
#context-viewpartialsource-mathml
#context-viewpartialsource-selection
#context-viewsource
#openintabs-menuseparator
#openintabs-menuitem

Example (hides the "View Background" menu item and the horizontal line after it):

#context-viewbgimage,
#context-sep-viewbgimage{
  display: none !important;
}