Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

prevent firefox from showing the address bar in fullscreen mode

  • 2 Antworten
  • 1 hat dieses Problem
  • 989 Aufrufe
  • Letzte Antwort von mishash1998

more options

Hello,

After recent Firefox update ( ver. 85.0 - 01.2021 / 64-bit, Windows )

code:

  1. fullscr-toggler {display:none!important;}

in file: "userChrome.css"

that was effectively preventing firefox from showing the address bar in fullscreen mode seems stopped working.

Does anyone know workaround solution?

Thanks!

Hello, After recent Firefox update ( ver. 85.0 - 01.2021 / 64-bit, Windows ) code: #fullscr-toggler {display:none!important;} in file: "userChrome.css" that was effectively preventing firefox from showing the address bar in fullscreen mode seems stopped working. Does anyone know workaround solution? Thanks!

Ausgewählte Lösung

#fullscr-toggler has been moved to HTML namespace, so you need to update the code in userChrome.css

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 */

*|div#fullscr-toggler {display:none!important;}

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

  • toolkit.legacyUserProfileCustomizations.stylesheets = true

See:

Diese Antwort im Kontext lesen 👍 1

Alle Antworten (2)

more options

Ausgewählte Lösung

#fullscr-toggler has been moved to HTML namespace, so you need to update the code in userChrome.css

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 */

*|div#fullscr-toggler {display:none!important;}

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

  • toolkit.legacyUserProfileCustomizations.stylesheets = true

See:

more options

Yep, that worked. Thank you! :)