Join the Mozilla’s Test Days event from 9–15 Jan to test the new Firefox address bar on Firefox Beta 135 and get a chance to win Mozilla swag vouchers! 🎁

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Why can't I keep the tabs on bottom?

  • 4 답장
  • 1 이 문제를 만남
  • 2 보기
  • 최종 답변자: AIVAS

more options

The new version forces tabs on top upon the users. And the new version is being forced on users. Why are tab positions not optional?

The new version forces tabs on top upon the users. And the new version is being forced on users. Why are tab positions not optional?

선택된 해결법

ShishiShabbat said

Why are tab positions not optional?

That option was removed in Firefox 29 due to the need to maintain dual coding, one for the default of "tabs on top" and the older UI scheme of "tabs on bottom".

From Fx 29 thru Fx 56 you were probably using the old legacy Classic Theme Restorer which only worked with the Australis versions of Firefox. Quantum doesn't provide for legacy extension such as the Classic Theme Restorer extension.

If you have been using a userChrome.css batch of code with Firefox 57-plus, a slight CSS change was made to the syntax for "tabs". So, you need updated code that works in Fx 65-plus versions.

See this answer: https://support.mozilla.org/en-US/questions/1248277#answer-1192325

문맥에 따라 이 답변을 읽어주세요 👍 1

모든 댓글 (4)

more options

선택된 해결법

ShishiShabbat said

Why are tab positions not optional?

That option was removed in Firefox 29 due to the need to maintain dual coding, one for the default of "tabs on top" and the older UI scheme of "tabs on bottom".

From Fx 29 thru Fx 56 you were probably using the old legacy Classic Theme Restorer which only worked with the Australis versions of Firefox. Quantum doesn't provide for legacy extension such as the Classic Theme Restorer extension.

If you have been using a userChrome.css batch of code with Firefox 57-plus, a slight CSS change was made to the syntax for "tabs". So, you need updated code that works in Fx 65-plus versions.

See this answer: https://support.mozilla.org/en-US/questions/1248277#answer-1192325

more options

Thanks so much for a proper tabs solution. Cheers mate.

more options

W.H.H said

In order to place the tabs directly above the web page windows in Firefox 65 and newer -- that is, below the navigation bar and below any other bars -- copy and paste the following lines into your userChrome.css file and restart Firefox. [Note: Detailed information on using userChrome.css files is available on the https://www.userchrome.org web site maintained by Jefferson Scher (alias: jscher2000).]
:root {
  --tab-min-height_tnot: 32px;
}

#print-preview-toolbar,
#printedit-toolbar,
#titlebar {
  -moz-box-ordinal-group: 0 !important;
}

#navigator-toolbox #toolbar-menubar {
  -moz-box-ordinal-group: 1 !important;
}

#navigator-toolbox #nav-bar {
  -moz-box-ordinal-group: 2 !important;
}

#navigator-toolbox #PersonalToolbar {
  -moz-box-ordinal-group: 3 !important;
}

#navigator-toolbox toolbar {
  -moz-box-ordinal-group: 10 !important;
}

#navigator-toolbox #TabsToolbar {
  -moz-box-ordinal-group: 100 !important;
}

#main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {
  padding-bottom: calc(1px + var(--tab-min-height_tnot)) !important;
}

#TabsToolbar {
  position: absolute !important;
  bottom: 0 !important;
  width: 100vw !important;
}

#tabbrowser-tabs {
  width: 100vw !important;
}

That batch of userChrome.css code does a lot more than just move the Tab Bar. Good way to create additional user support issues for other users who wouldn't want those modifications.

more options

Seems to work (at least for this "update" sic).

Thank you!