Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

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.