http://www.mozilla.org/support/firefox/tips wrote:Prevent sites from disabling the context menu
Some sites prevent you from right-clicking on the page to show the context menu. To disable such attempts, go to Tools > Options... (Edit > Preferences... under Linux and Mac OS X), click the Content section, and then click the Advanced... button next to Enable JavaScript. In the Advanced JavaScript Settings window, uncheck Disable or replace context menus and click OK.
For these modifications to work, enter them in you userChrome.css file located in your profile folder. The userChrome.css file does not exist by default and has to be created in the folder "chrome".
/* Change the progress bar color */
Code: Select all
.progress-bar {
-moz-appearance: none !important;
background-color: #660000 !important;
}
/* Display the sidebar in opposite side */
Code: Select all
#browser {
-moz-box-direction: reverse;
}
These changes are done in about:config
Hiding the Go button in the URL bar
browser.urlbar.hideGoButton [default false] can be set to "true" by double-clicking the entry.