Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, 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

Disable statusbar popup

  • 3 replies
  • 1 has this problem
  • 2 views
  • Last reply by NGConnect

more options

I want to be able of disabling the statusbar popup but the solutions that i found on internet does not work.

The reason why is because is rather annoying while seeing videos in fullscreen mode by F11.

Can you please tell me how can i disble the statusbar popup?

Really appreciated,

Nuno M. Gavina

PS- Keep the good work, FF is my favorite browser.

I want to be able of disabling the statusbar popup but the solutions that i found on internet does not work. The reason why is because is rather annoying while seeing videos in fullscreen mode by F11. Can you please tell me how can i disble the statusbar popup? Really appreciated, Nuno M. Gavina PS- Keep the good work, FF is my favorite browser.

Chosen solution

This code should work only in Full Screen mode. Leave out the window[inFullscreen="true"] selector to make the code work in a regular window mode as well.

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


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

window[inFullscreen="true"] #statuspanel #statuspanel-label {display:none!important}


See also this thread to hide specific messages:

Read this answer in context 👍 0

All Replies (3)

more options

So what site are you at when this popups?

more options

Chosen Solution

This code should work only in Full Screen mode. Leave out the window[inFullscreen="true"] selector to make the code work in a regular window mode as well.

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


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

window[inFullscreen="true"] #statuspanel #statuspanel-label {display:none!important}


See also this thread to hide specific messages:

more options

seems to work fine, as you advised :)

truly appreciated... keep the good work !