Przeszukaj pomoc

Unikaj oszustw związanych z pomocą.Nigdy nie będziemy prosić Cię o dzwonienie na numer telefonu, wysyłanie SMS-ów ani o udostępnianie danych osobowych. Zgłoś podejrzaną aktywność, korzystając z opcji „Zgłoś nadużycie”.

Learn More

reader view, hide left panel

  • 1 odpowiedź
  • 2 osoby mają ten problem
  • 31 wyświetleń
  • Ostatnia odpowiedź od cor-el

more options

I would like to hide the left panel present in reader view mode. Setting reader.toolbar.vertical to false in about:config does nothing after restart. How to hide this panel on the left? CSS or something?

I would like to hide the left panel present in reader view mode. Setting reader.toolbar.vertical to false in about:config does nothing after restart. How to hide this panel on the left? CSS or something?

Wybrane rozwiązanie

You can add code to the userContent.css file.


#reader-toolbar { display:none !important; }

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

You can use this button to go to the current Firefox profile folder:

  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor to create userContent.css file in the chrome folder (file name is case sensitive)
  • Paste the code in the userContent.css file
  • Save the file as userContent.css in the chrome folder
Przeczytaj tę odpowiedź w całym kontekście 👍 1

Wszystkie odpowiedzi (1)

more options

Wybrane rozwiązanie

You can add code to the userContent.css file.


#reader-toolbar { display:none !important; }

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

You can use this button to go to the current Firefox profile folder:

  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor to create userContent.css file in the chrome folder (file name is case sensitive)
  • Paste the code in the userContent.css file
  • Save the file as userContent.css in the chrome folder