Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

Disable Reader View Toolbar After FF69

  • 1 odpoveď
  • 1 má tento problém
  • 16 zobrazení
  • Posledná odpoveď od Michael Ulmen

more options

When I enable reader mode there is a small floating toolbar I find distracting. I would like to turn it off.

I found two previous questions on this topic but neither of them worked for me.

https://support.mozilla.org/en-US/questions/1082202 https://support.mozilla.org/en-US/questions/1209287

When I enable reader mode there is a small floating toolbar I find distracting. I would like to turn it off. I found two previous questions on this topic but neither of them worked for me. https://support.mozilla.org/en-US/questions/1082202 https://support.mozilla.org/en-US/questions/1209287

Upravil(a) Michael Ulmen dňa

Vybrané riešenie

Answering my own question because the existing questions are locked.

Starting in Firefox 69 userContent.css is not loaded at startup to improve performance. This can be changed by setting toolkit.legacyUserProfileCustomizations.stylesheets True in about:config. Per https://www.ghacks.net/2019/05/24/firefox-69-userchrome-css-and-usercontent-css-disabled-by-default/

Complete steps to hide the control panel, with thanks to previous questions and answers:

  • Find your default profile directory at Help > Troubleshooting Information > Profile Directory
  • If it does not exist create a directory called chrome in the default profile directory.
  • Create a file called userContent.css in the chrome directory with the following content:

.toolbar { visibility: hidden !important; }

  • In Firefox go to about:config and set toolkit.legacyUserProfileCustomizations.stylesheets to True.
  • Restart Firefox
Čítať túto odpoveď v kontexte 👍 0

Všetky odpovede (1)

more options

Vybrané riešenie

Answering my own question because the existing questions are locked.

Starting in Firefox 69 userContent.css is not loaded at startup to improve performance. This can be changed by setting toolkit.legacyUserProfileCustomizations.stylesheets True in about:config. Per https://www.ghacks.net/2019/05/24/firefox-69-userchrome-css-and-usercontent-css-disabled-by-default/

Complete steps to hide the control panel, with thanks to previous questions and answers:

  • Find your default profile directory at Help > Troubleshooting Information > Profile Directory
  • If it does not exist create a directory called chrome in the default profile directory.
  • Create a file called userContent.css in the chrome directory with the following content:

.toolbar { visibility: hidden !important; }

  • In Firefox go to about:config and set toolkit.legacyUserProfileCustomizations.stylesheets to True.
  • Restart Firefox

Upravil(a) Michael Ulmen dňa