Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Is there a way to get rid of the Firefox button?

  • 3 replies
  • 5 have this problem
  • 20 views
  • Last reply by cor-el

more options

As the title states, is there a way to get rid of the Firefox button? I don't like it, and I never use the menu.

As the title states, is there a way to get rid of the Firefox button? I don't like it, and I never use the menu.

Chosen solution

If you turn on the menu bar, the Firefox button will go away. Press the Firefox button, then from the "Preferences" menu choose "Menu Bar."

Or you can make the Firefox button smaller with this add-on: https://addons.mozilla.org/en-US/firefox/addon/iconic-firefox-menu/

Or move/remove the Firefox button with this add-on (see the instructions in the add-on description): https://addons.mozilla.org/en-US/firefox/addon/movable-firefox-button/

Read this answer in context 👍 0

All Replies (3)

more options

Chosen Solution

If you turn on the menu bar, the Firefox button will go away. Press the Firefox button, then from the "Preferences" menu choose "Menu Bar."

Or you can make the Firefox button smaller with this add-on: https://addons.mozilla.org/en-US/firefox/addon/iconic-firefox-menu/

Or move/remove the Firefox button with this add-on (see the instructions in the add-on description): https://addons.mozilla.org/en-US/firefox/addon/movable-firefox-button/

more options

Ah, the movable Firefox button one works just fine if you move it to a place you disable, thanks!

more options

If you want to hide the Firefox menu button then you do not need an extension to do that.
As explained on the home page of that extension you can do that with code in userChrome.css

Add code to userChrome.css below the @namespace line.


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

/*hide the firefox button*/
#appmenu-button, #appmenu-toolbar-button { display:none !important; }