IRsoft - Software and more by Ingmar Runge

Firefox Hack

Since Firefox 1.5, the "progress meter" in the status bar did no longer fill the entire panel. Here's a fix to get back the old behavior.

Extend the progress bar to fill the entire status panel

Open your userChrome.css file in your profile/chrome folder (usually C:\Documents and Settings\USERNAME\Application Data\Mozilla\Firefox\Profiles\PROFILENAME\chrome) and copy the following into it.

.statusbarpanel-progress {
    padding: 0 !important;
}
.progressmeter-statusbar {
  -moz-appearance: none !important;
  height: auto !important;
  margin-top: -3px !important;
  margin-bottom: -2px !important;
  margin-left: 1px !important;
  margin-right: 1px !important;
  border: none;
}
 
Parsed in 0.037 seconds, using GeSHi © 2005 Nigel McNie
Last edited by Ingmar on Saturday, May 20th 2006 17:11:10 CEST