为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

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

详细了解

Firefox 5.01 how to edit css for all users

  • 2 个回答
  • 4 人有此问题
  • 1 次查看
  • 最后回复者为 markb432

more options

Hello. I'm trying to configure Firefox 5.01 for deployment to our corporate users. One of my goals is to disable and hide the Sync tab in the Options menu. I've found some help on creating a userChrome.css file and placing it in the users profile \Chrome directory. Firefox doesn't seem to always like that and crashes often and sometimes it seems fine. I've been using #BrowserPreferences radio[pane="paneSync"] { display: none !important; } I'd like to know where I can place a css file in the installer or which file to edit in the installer or whatever means there is to avoid having to copy a file to each users profile at some random point in time after they have launched Firefox and created a profile directory. I'd like that tab to be removed at install-time without needing to go back and retrofit every installation. Thanks

Hello. I'm trying to configure Firefox 5.01 for deployment to our corporate users. One of my goals is to disable and hide the Sync tab in the Options menu. I've found some help on creating a userChrome.css file and placing it in the users profile \Chrome directory. Firefox doesn't seem to always like that and crashes often and sometimes it seems fine. I've been using #BrowserPreferences radio[pane="paneSync"] { display: none !important; } I'd like to know where I can place a css file in the installer or which file to edit in the installer or whatever means there is to avoid having to copy a file to each users profile at some random point in time after they have launched Firefox and created a profile directory. I'd like that tab to be removed at install-time without needing to go back and retrofit every installation. Thanks

由markb432于修改

被采纳的解决方案

For newly created profiles you can place files in the default template location in \defaults\profile\chrome for the userChrome.css file.

  • C:\Program Files\Mozilla Firefox\defaults\profile\

Files can only be added to already existing by copying them to that profile folder.

You may want to consider hiding menu entries in the Firefox App menu and Tools menu as well.


#sync-setup-appmenu, #sync-syncnowitem-appmenu,
#sync-setup, #sync-syncnowitem,
#BrowserPreferences radio[pane="paneSync"]
{display:none!important;}
定位到答案原位置 👍 0

所有回复 (2)

more options

选择的解决方案

For newly created profiles you can place files in the default template location in \defaults\profile\chrome for the userChrome.css file.

  • C:\Program Files\Mozilla Firefox\defaults\profile\

Files can only be added to already existing by copying them to that profile folder.

You may want to consider hiding menu entries in the Firefox App menu and Tools menu as well.


#sync-setup-appmenu, #sync-syncnowitem-appmenu,
#sync-setup, #sync-syncnowitem,
#BrowserPreferences radio[pane="paneSync"]
{display:none!important;}
more options

Thank you! I've been trying to learn to use DOM but I never would have found those other settings on my own. However, on Windows 7 Firefox does not pickup the settings in the \chrome folder so I had to write a script to copy the files (userchrome and usercontent) to the profile directory. The built-in process works in Firefox 4 but not 5. Oh well.