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

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

Μάθετε περισσότερα

How do I put tabs underneath the url bar?

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

more options

With the latest firefox update, the extension "Classic Theme Restorer" that moved the tabs below the url bar broke. Having my tabs at the very top of the screen is extremely ugly, so is there a replacement available, or a customization feature built into the browser that will allow me to move my tabs back where they're supposed to be?

With the latest firefox update, the extension "Classic Theme Restorer" that moved the tabs below the url bar broke. Having my tabs at the very top of the screen is extremely ugly, so is there a replacement available, or a customization feature built into the browser that will allow me to move my tabs back where they're supposed to be?

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

more options

Add the below to userChrome.css

/* 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;
   }