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.

how to customize UI in firefox?

  • 1 antwoord
  • 1 heeft dit probleem
  • 1 weergave
  • Laatste antwoord van cor-el

more options

Where i can find more into about that - propably using userchrome.css file. I want to remove from "hamburger menu" - content blocking (i have this in preferences), logins and passwords (i use keepassxc ), customize , and from urlbar as a first search with google ( I have separate address bar and url bar (browser.urlbar.autofill is set to false) ).

Where i can find more into about that - propably using userchrome.css file. I want to remove from "hamburger menu" - content blocking (i have this in preferences), logins and passwords (i use keepassxc ), customize , and from urlbar as a first search with google ( I have separate address bar and url bar (browser.urlbar.autofill is set to false) ).

Alle antwoorden (1)

more options

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


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

#appMenu-tp-button, 
#appMenu-tp-separator,
#appMenu-logins-button,
#appMenu-customize-button,
#urlbarView-row-0 {
 display:none!important;
}