Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

Tabsontop console command doesn't work any more since v29.0.1

  • 3 réponses
  • 9 ont ce problème
  • 1 vue
  • Dernière réponse par cor-el

more options

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.

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.


  1. Install Stylish and restart Firefox when prompted.
  2. Click the ≡ Menu Button and choose Add-ons.
  3. In the Add-ons Manager, click User Styles on the left.
  4. 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 👍 1

Toutes les réponses (3)

more options

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.


  1. Install Stylish and restart Firefox when prompted.
  2. Click the ≡ Menu Button and choose Add-ons.
  3. In the Add-ons Manager, click User Styles on the left.
  4. 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.

more options

Unfortunate that I have to install an addon to do it, but thanks for the help.

more options

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 par cor-el