Remove Address At Bottom Of Browser

User Help for Mozilla Firefox
Post Reply
User avatar
tunescool
Posts: 124
Joined: May 11th, 2009, 6:22 am

Remove Address At Bottom Of Browser

Post by tunescool »

how can i remove the address thing at the bottom. i have a chrome file

Image
User avatar
dickvl
Posts: 54163
Joined: July 18th, 2005, 3:25 am

Re: Remove Address At Bottom Of Browser

Post by dickvl »

That is the overlink info that is showing the href attribute of a link on hover.
I notice some weird flashes of the overlink when hovering away with the usual code that seem to be about the type being getting copied to previous-type.

This code in userChrome.css hides this info and doesn't have this flashing effect for me.

Code: Select all

:is(#statuspanel[type=overLink],
#statuspanel[type=defaultStatus]) #statuspanel-label {
  display:none!important;
}
More info about userChrome.css:
https://www.userchrome.org/what-is-userchrome-css.html

You need to set toolkit.legacyUserProfileCustomizations.stylesheets to true on the about:config page to make Firefox read userChrome.css and userContent.css in the chrome folder.
https://support.mozilla.org/en-US/kb/ab ... or-firefox
User avatar
tunescool
Posts: 124
Joined: May 11th, 2009, 6:22 am

Re: Remove Address At Bottom Of Browser

Post by tunescool »

its gone when i hover a link, but when i go to a link its stil there
User avatar
tunescool
Posts: 124
Joined: May 11th, 2009, 6:22 am

Re: Remove Address At Bottom Of Browser

Post by tunescool »

please help
User avatar
dickvl
Posts: 54163
Joined: July 18th, 2005, 3:25 am

Re: Remove Address At Bottom Of Browser

Post by dickvl »

This code only hides the overlink message.
All other useful status messages like you see when you load a webpage will still be displayed.

Code: Select all

/* hide all status messages */
#statuspanel {opacity: 0 !important;}
User avatar
tunescool
Posts: 124
Joined: May 11th, 2009, 6:22 am

Re: Remove Address At Bottom Of Browser

Post by tunescool »

thanks
Post Reply