How can I hide "Transferring data..." status?
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
by cor-elYou 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
Additional System Details
Installed Plug-ins
- Next Generation Java Plug-in 10.9.2 for Mozilla browsers
- NPRuntime Script Plug-in Library for Java(TM) Deploy
- Google Update
- Amazon MP3 Downloader Plugin 1.0.17
- Adobe PDF Plug-In For Firefox and Netscape 10.1.3
- 4.1.10329.0
- The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
- Shockwave Flash 10.1 r85
- iTunes Detector Plug-in
- Shockwave Flash 9.0 r45
- Office Plugin for Netscape Navigator
Application
- User Agent: Mozilla/5.0 (Windows NT 6.2; rv:17.0) Gecko/17.0 Firefox/17.0
More Information
Web sites that take longer to load cause the "Transferring data..." loading status to act similar to a flickering element to me, the user. How can I hide the loading status? I am not interested in installing an anti-tracker plug-in.
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;}
Question owner
Thank you! This took care of it.
You're welcome
