Den här webbplatsen har begränsad funktionalitet medan vi utför underhåll för att förbättra din upplevelse. Om en artikel inte löser ditt problem och du vill ställa en fråga har vi vår gemenskap som väntar på att hjälpa dig på @FirefoxSupport på Twitter, /r/firefox på Reddit.

Sök i support

Akta dig för supportbedrägerier: Vi kommer aldrig att be dig att ringa eller skicka ett sms till ett telefonnummer eller dela personlig information. Rapportera misstänkt aktivitet med alternativet "Rapportera missbruk".

Läs mer

I want to prevent access to the 'about:support' page. How do I accomplish this task?

  • 3 svar
  • 1 har detta problem
  • 2 visningar
  • Senaste svar av cor-el

more options

I want to prevent access to the 'about:support' page. How do I accomplish this task?

I want to prevent access to the 'about:support' page. How do I accomplish this task?

Vald lösning

You need to create the userContent.css file and possibly the chrome folder as well if they do not exist yet. Note that the names are case sensitive.

  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor like Notepad to create a (new) userContent.css file in the chrome folder (file name is case sensitive)
  • Paste the code in the userContent.css file in the editor window
  • Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userContent.css.
    Otherwise Windows may add a hidden .txt file extension and you end up with a not working userContent.css.txt file
Läs svaret i sitt sammanhang 👍 0

Alla svar (3)

more options

Is this about resetting Firefox or do you want to disable access completely?

You can consider to use code in the userContent.css file. Note that userContent.css and userChrome.css are disabled when Firefox in started in Safe Mode (e.g. hold Shift key when starting).


@-moz-document url(about:support){body {display:none !important; }}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

more options

Where do I find the userContent.css file? It's not there.

more options

Vald lösning

You need to create the userContent.css file and possibly the chrome folder as well if they do not exist yet. Note that the names are case sensitive.

  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor like Notepad to create a (new) userContent.css file in the chrome folder (file name is case sensitive)
  • Paste the code in the userContent.css file in the editor window
  • Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userContent.css.
    Otherwise Windows may add a hidden .txt file extension and you end up with a not working userContent.css.txt file