How do I put tabs underneath the url bar?
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?
All Replies (1)
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; }