Die Funktionalität dieser Website ist durch Wartungsarbeiten eingeschränkt, die Ihr Erlebnis verbessern sollen. Wenn ein Artikel Ihr Problem nicht löst und Sie eine Frage stellen möchten, können Sie unsere Gemeinschaft über @FirefoxSupport auf Twitter, /r/firefox oder Reddit fragen.

Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Weitere Informationen

How to hide the loading information boxes in the corners of the screen?

more options

When you hover over links in Firefox (not specifying, I'm pretty sure most browsers do that, but I'm exclusively using Firefox), it presents you information of the link in the corners of the browser window. Is there any way, some kind of option or something to hide that?

(in the left corner of the attached screenshot)

When you hover over links in Firefox (not specifying, I'm pretty sure most browsers do that, but I'm exclusively using Firefox), it presents you information of the link in the corners of the browser window. Is there any way, some kind of option or something to hide that? (in the left corner of the attached screenshot)

Alle Antworten (5)

more options

Here is the image that didn't upload the first run.

more options

Add the following code to your userChrome.css file.

   @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
   statuspanel {display: none !important;}
more options

Do you want to hide all these status messages?

Note that you can use this more specific selector to only hide links if you want to see messages shown during page load so you know what happens.

statuspanel[type="overLink"] .statuspanel-label { display:none!important; }
more options

cor-el said

Do you want to hide all these status messages? Note that you can use this more specific selector to only hide links if you want to see messages shown during page load so you know what happens.
statuspanel[type="overLink"] .statuspanel-label { display:none!important; }

Do I have to add this after the first line of TyDraniu or will it work on its own?

more options

Hi helpspls, those are two different alternatives.

This one --

statuspanel {
  display: none !important;
}

-- hides the panel no matter what is showing in it.

This one --

statuspanel[type="overLink"] .statuspanel-label {
  display: none !important; 
}

-- only hides the panel when it contains a particular kind of message, identified by the type="overLink" (as in, hovering your mouse over a link). So that would allow loading status messages, for example.

It's usually a good idea to only hide the minimum necessary until you decide that you want to hide more.