Este site está com funcionalidades limitadas enquanto realizamos manutenção para melhorar sua experiência de uso. Se nenhum artigo resolver seu problema e você quiser fazer uma pergunta, nossa comunidade de suporte pode te ajudar em @FirefoxSupport no Twitter e /r/firefox no Reddit.

Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Saiba mais

Esta discussão foi arquivada. Faça uma nova pergunta se precisa de ajuda.

Firefox 5.01 how to edit css for all users

  • 2 respostas
  • 4 têm este problema
  • 1 visualização
  • Última resposta de 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

Alterado por markb432 em

Solução escolhida

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;}
Ler esta resposta 👍 0

Todas as respostas (2)

more options

Solução escolhida

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.