Pomoc pśepytaś

Glědajśo se wobšudy pomocy. Njenapominajomy was nigda, telefonowy numer zawołaś, SMS pósłaś abo wósobinske informacije pśeraźiś. Pšosym dajśo suspektnu aktiwitu z pomocu nastajenja „Znjewužywanje k wěsći daś“ k wěsći.

Dalšne informacije

Firefox 5.01 how to edit css for all users

  • 2 wótegronje
  • 4 maju toś ten problem
  • 1 naglěd
  • Slědne wótegrono wót 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

Wót markb432 změnjony

Wubrane rozwězanje

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;}
Toś to wótegrono w konteksće cytaś 👍 0

Wšykne wótegrona (2)

more options

Wubrane rozwězanje

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.