Is there an easy way to combine the stop/reload/go buttons in Firefox, using a userstyle? I have a user style that combines stop/reload buttons, but I'd like to combine it with the go button to. The go button would be stop if the page is loading, or reload if it was loaded, and when I focus into the address bar it would turn into the Go button.

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

You can combine the Stop/Reload buttons in Firefox just using a little CSS. Create a userChrome.css file in your firefox profile's chrome directory (%APPDATA%/mozilla/firefox.######.default/chrome on windows or ~/.mozilla/firefox/xxxxxxxx.default/chrome/ on linux). In it put the following CSS rules:

/* combine stop and reload buttons */
#stop-button[disabled] { display: none }
#stop-button:not([disabled]) + #reload-button { display: none }

Now either the stop or reload button will display, not both. Pretty handy, and saves you from having to install more addons. Helps make for a very clean Firefox layout:

enter image description here

Source

link|improve this answer
feedback

use this :

http://userstyles.org/styles/2131

link|improve this answer
feedback

I don't know about go button but I use Smart Stop-Reload extension.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.