Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

reader view, hide left panel

  • 1 risposta
  • 2 hanno questo problema
  • 19 visualizzazioni
  • Ultima risposta di 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?

Soluzione scelta

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
Leggere questa risposta nel contesto 👍 1

Tutte le risposte (1)

more options

Soluzione scelta

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