搜索 | 用户支持

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

详细了解

Loosing Toolbars

  • 3 个回答
  • 26 人有此问题
  • 1 次查看
  • 最后回复者为 Morbus

more options

I support disabled users. One has an uncontrollable twitch of a finger which causes him to remove the Navigation Toolbar and the Menu Bar. Is there a way to stop this as it causes him considerable grief. We have 'Public Fox' on his PC to stop him altering the options and add-ons.

This happened

A few times a week

== a long time ago - took us ages to figure out what the cause was.

I support disabled users. One has an uncontrollable twitch of a finger which causes him to remove the Navigation Toolbar and the Menu Bar. Is there a way to stop this as it causes him considerable grief. We have 'Public Fox' on his PC to stop him altering the options and add-ons. == This happened == A few times a week == a long time ago - took us ages to figure out what the cause was.

被采纳的解决方案

Try to add this code to userChrome.css below the @namespace line. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files

#nav-bar, #toolbar-menubar {
 visibility: visible !important;
 height: 26px !important;
 min-height: 26px !important;
}


You can look at the Window's accessibility features:
Windows 7: http://www.microsoft.com/enable/products/windows7/default.aspx - Accessibility in Windows 7
Vista: http://www.microsoft.com/enable/products/windowsvista/
XP: http://www.microsoft.com/enable/products/windowsxp/default.aspx

See also:
http://kb.mozillazine.org/Accessibility_features_of_Firefox
http://www.accessfirefox.org/ - Access Firefox Because the Internet is for everyone.

定位到答案原位置 👍 0

所有回复 (3)

more options

Hello Andrew.

I think this happens when right clicking the toolbar and accidentally selecting (deselecting) an entry, right?

I don't know of a way to disable that particular contextual menu, but it's definitely possible with extensions. Try searching at addons.mozilla.org. Or you can try the developers' forums to explain your problem and request an extension, if it doesn't exist. Or you can build one yourself if you have the time and skill/will to learn. I'm sorry that this isn't easier to solve.

To recover lost toolbars and buttons, this article will help you:

https://support.mozilla.com/en-US/kb/Back+and+forward+or+other+toolbar+items+are+missing

more options

Morbus Thanks. I at least have a method to recover from the problem. Previously I had to totally remove Firefox and re-install. I've gone through all the add-ons. No luck. I will try the developer centre. Thanks Andrew

more options

选择的解决方案

Try to add this code to userChrome.css below the @namespace line. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files

#nav-bar, #toolbar-menubar {
 visibility: visible !important;
 height: 26px !important;
 min-height: 26px !important;
}


You can look at the Window's accessibility features:
Windows 7: http://www.microsoft.com/enable/products/windows7/default.aspx - Accessibility in Windows 7
Vista: http://www.microsoft.com/enable/products/windowsvista/
XP: http://www.microsoft.com/enable/products/windowsxp/default.aspx

See also:
http://kb.mozillazine.org/Accessibility_features_of_Firefox
http://www.accessfirefox.org/ - Access Firefox Because the Internet is for everyone.

由cor-el于修改