Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

تلاش سپورٹ

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

prevent firefox from showing the address bar in fullscreen mode

  • 2 جواب دیں
  • 1 میں یہ مسئلہ ہے
  • 1 دیکھیں
  • آخری جواب بذریعہ 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!

منتخب شدہ حل

#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:

اس جواب کو سیاق و سباق میں پڑھیں 👍 1

تمام جوابات (2)

more options

منتخب شدہ حل

#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! :)