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!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

reader view, hide left panel

  • 1 个回答
  • 2 人有此问题
  • 1 次查看
  • 最后回复者为 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?

被采纳的解决方案

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
定位到答案原位置 👍 1

所有回复 (1)

more options

选择的解决方案

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