Hide Statusbar

User Help for Mozilla Firefox
Post Reply
babr
Posts: 2
Joined: November 20th, 2017, 5:29 pm

Hide Statusbar

Post by babr »

How do i hide/disable/kill ] the statusbar / statuspanel in the left bottom corner in Firefox 57. (*,)
It used to be something like this in userChrome.css

Code: Select all

/* these no longer work in FF57 */
#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;}
statusbar-display { display:none !important; }
note, status-4-ever add-on no longer works in FF57

Yeeee....
Found the solution to my problem

Code: Select all

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
.statuspanel-label {
    display: none !important;
} 

#nav-bar { 
    display: none !important; 
}

#TabsToolbar { 
    visibility: collapse; !important; 
}

it was the missing dot before statuspanel-label
Last edited by babr on December 13th, 2017, 5:22 pm, edited 3 times in total.
User avatar
DanRaisch
Moderator
Posts: 127234
Joined: September 23rd, 2004, 8:57 pm
Location: Somewhere on the right coast

Re: Hide Statusbar

Post by DanRaisch »

Moving to Firefox Support.
Post Reply