
Tabsontop console command doesn't work any more since v29.0.1
I used to be able to put the tabs on the bottom where they belong using the console, and now this command doesn't do anything. I don't want to use Chrome, I want to use Firefox, just make it a default option instead of making me root around in console settings that don't even work any more.
Solution choisie
You can either install an add-on like Tabs On Bottom or Classic Theme Restorer, or you can use the user style below.
- https://addons.mozilla.org/firefox/addon/tabs-on-bottom/
- https://addons.mozilla.org/firefox/addon/fdgueux-tabs-on-bottom/
- https://addons.mozilla.org/firefox/addon/classicthemerestorer/
- Install Stylish and restart Firefox when prompted.
- Click the ≡ Menu Button and choose Add-ons.
- In the Add-ons Manager, click User Styles on the left.
- Click the Write New Style button at the top. Paste the following in the text box, give the style a name, then click the Save button.
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); #TabsToolbar { -moz-box-ordinal-group: 99 !important; }
If you don't want to install an add-on, you can use the userChrome.css file instead, but I don't recommend it.
Lire cette réponse dans son contexte 👍 1Toutes les réponses (3)
Solution choisie
You can either install an add-on like Tabs On Bottom or Classic Theme Restorer, or you can use the user style below.
- https://addons.mozilla.org/firefox/addon/tabs-on-bottom/
- https://addons.mozilla.org/firefox/addon/fdgueux-tabs-on-bottom/
- https://addons.mozilla.org/firefox/addon/classicthemerestorer/
- Install Stylish and restart Firefox when prompted.
- Click the ≡ Menu Button and choose Add-ons.
- In the Add-ons Manager, click User Styles on the left.
- Click the Write New Style button at the top. Paste the following in the text box, give the style a name, then click the Save button.
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); #TabsToolbar { -moz-box-ordinal-group: 99 !important; }
If you don't want to install an add-on, you can use the userChrome.css file instead, but I don't recommend it.
Unfortunate that I have to install an addon to do it, but thanks for the help.
You do not need to install the Stylish extension to be able to do this. You can easily create a chrome folder in the Firefox profile folder and a userChrome.css file in this folder with the code.
Note that you may need a higher number (CTR uses #TabsToolbar {-moz-box-ordinal-group: 100} and Tab on Bottom uses: #TabsToolbar {-moz-box-ordinal-group: 10000 !important;}) as there may still be toolbars around that use a higher value for this property.
See also:
Add code to the userChrome.css file below the default @namespace line.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ #TabsToolbar {-moz-box-ordinal-group: 10000 !important;}
The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.
You can use this button to go to the currently used Firefox profile folder:
- Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
Modifié le