Anyway to combine the status bar to the top bar?


Recommended Posts

Install userChrome.js extension and restart Firefox:

http://forums.mozillazine.org/viewtopic.php?t=397735

Place the following JavaScript in userChrome.js and restart Firefox:

(function() {

var
throbber = document.getElementById('throbber-box'),
statusBar = document.getElementById('status-bar');

statusBar.setAttribute('flex', '1');
statusBar.setAttribute('context', '');
statusBar.setAttribute('style', 'background: none transparent !important; height: auto !important; border: none !important;');
throbber.parentNode.insertBefore(statusBar, throbber);

})();

That will put the entire statusbar before the throbber.

Link to comment
Share on other sites

:( why didnt that javascript work for me? It just made my taskbar massive..this tweak would have been useful!

Not sure. What theme are you using? Can you post a screenshot of how your toolbars normally appear?

Thank you very much man, exactly what I was looking for!
No problem. Glad it worked for you.
Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.