Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

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

  • 3 antwoorden
  • 5 hebben dit probleem
  • 15 weergaven
  • Laatste antwoord van 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.

Gekozen oplossing

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/

Dit antwoord in context lezen 👍 0

Alle antwoorden (3)

more options

Gekozen oplossing

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; }