Mozilla 도움말 검색

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

자세히 살펴보기

Tabs on Bottom Release 89.0

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

more options

Hello, all.

This is not a question but a pointer for those who have successfully been using userChrome.css to put the tabs where they belong, below the Bookmarks bar. :-)

If you used a userChrome.css solution such as that presented in threads like the support article "tabs on bottom release 72.0.1" (full disclosure, that is my solution), then you just need to add to the #TabsToolbar section one line:

top: var(--uc-titlebar-padding,86px);

You can play with the "86px" until you have the tabs where you like them. Depending upon my profile and other CSS options, I have to move that a few pixels up or down to get it looking just right.

Hello, all. This is not a question but a pointer for those who have successfully been using userChrome.css to put the tabs where they belong, below the Bookmarks bar. :-) If you used a userChrome.css solution such as that presented in threads like [[tabs on bottom release 72.0.1|the support article "tabs on bottom release 72.0.1"]] (full disclosure, that is my solution), then you just need to add to the '''#TabsToolbar''' section one line: top: var(--uc-titlebar-padding,86px); You can play with the "86px" until you have the tabs where you like them. Depending upon my profile and other CSS options, I have to move that a few pixels up or down to get it looking just right.

선택된 해결법

Me, again!

You can use just this in the #TabsToolbar section:

top: 86px !important;

The "var" part was for some other calculations; it is not needed, here, if you know exactly where you want the tabs to appear.

If you want the tabs position to be more dynamic, you can get fancy and calculate how far from the top to put the tabs. For example, if you like to turn your Bookmarks Toolbar on and off, you might not want your tabs suddenly intruding on your web page.

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

모든 댓글 (3)

more options

Sorry about the link, above. It should be this support article .

more options

선택된 해결법

Me, again!

You can use just this in the #TabsToolbar section:

top: 86px !important;

The "var" part was for some other calculations; it is not needed, here, if you know exactly where you want the tabs to appear.

If you want the tabs position to be more dynamic, you can get fancy and calculate how far from the top to put the tabs. For example, if you like to turn your Bookmarks Toolbar on and off, you might not want your tabs suddenly intruding on your web page.

more options

Thank you for your feedback.