Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

How can I hide "Transferring data..." status?

  • 3 cavab
  • 4 have this problem
  • 4 views
  • Last reply by cor-el

more options

I want to hide the "Transferring data..." status that shows on the lower left of the browser screen because it is as hazardous as a flickering icon, from a usability standpoint.

I want to hide the "Transferring data..." status that shows on the lower left of the browser screen because it is as hazardous as a flickering icon, from a usability standpoint.

Chosen solution

You can hide specific status pop-up messages with code in userChrome.css if you still want to see the links on hover.

Add code to the userChrome.css file below the default @namespace line.

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


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#statusbar-display[label^="Looking"] {display:none !important;}
#statusbar-display[label^="Connect"] {display:none !important;}
#statusbar-display[label^="Waiting"] {display:none !important;}
#statusbar-display[label^="Transfer"] {display:none !important;}
Read this answer in context 👍 1

All Replies (3)

more options

Seçilmiş Həll

You can hide specific status pop-up messages with code in userChrome.css if you still want to see the links on hover.

Add code to the userChrome.css file below the default @namespace line.

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


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#statusbar-display[label^="Looking"] {display:none !important;}
#statusbar-display[label^="Connect"] {display:none !important;}
#statusbar-display[label^="Waiting"] {display:none !important;}
#statusbar-display[label^="Transfer"] {display:none !important;}
more options

Thank you! This took care of it.

more options

You're welcome