Avatar for Username

Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Learn More

How to move tab bar down in Firefox 57?

  • 1 απάντηση
  • 2 έχουν αυτό το πρόβλημα
  • 3 προβολές
  • Τελευταία απάντηση από Moses

more options

How to move tab bar down in Firefox 57? Option about:config and browser.tabs.onTop = false doesn't exist in this version of Firefox

How to move tab bar down in Firefox 57? Option about:config and browser.tabs.onTop = false doesn't exist in this version of Firefox

Όλες οι απαντήσεις (1)

more options

That's an old pref and hasn't been around for years. You need to create a userChrome.css and copy / paste some code to achieve tabs on bottom.

Code to paste below: /* Tab bar below Navigation & Bookmarks Toolbars For best results, show Title Bar or Menu Bar */ #nav-bar { /* main toolbar */ -moz-box-ordinal-group: 1 !important; border-top-width: 0 !important; } #PersonalToolbar { /* bookmarks toolbar */ -moz-box-ordinal-group: 2 !important; } #TabsToolbar { /* tab bar */ -moz-box-ordinal-group: 3 !important; }

If you were a Classic Theme Restorer user, you can use the code below made by the developer of CTR.