搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

How do I put tabs underneath the url bar?

  • 1 个回答
  • 16 人有此问题
  • 7 次查看
  • 最后回复者为 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;
   }