Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

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
Solved Archived

How to hide the Status Bar in Firefox Nightly?

jpsouzasilva replied
jpsouzasilva

Since the upgrade to Nightly my userChrome.css stopped working.

The code in https://support.mozilla.org/en-US/questions/1186444 no longer works.

Since the upgrade to Nightly my userChrome.css stopped working. The code in https://support.mozilla.org/en-US/questions/1186444 no longer works.

All Replies (1)

Chosen Solution

For Firefox Nightly 61.0a1 it should be like the following instead:

#statuspanel #statuspanel-label[value^="Read"],
#statuspanel #statuspanel-label[value^="Look"],
#statuspanel #statuspanel-label[value^="Connect"],
#statuspanel #statuspanel-label[value^="Wait"],
#statuspanel #statuspanel-label[value^="Send"],
#statuspanel #statuspanel-label[value^="Transfer"],
#statuspanel #statuspanel-label[value*="TLS handshake"],
#statuspanel #statuspanel-label[value*="FTP transaction"] {
	display: none !important;
}