為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

tabs on bottom

more options

I used the chrome solution for tabs on bottom. This did move the tabs to the bottom, but they no longer show the tab text title, only the icon and a blank space. Firefox 65 and Windows 10

I used the chrome solution for tabs on bottom. This did move the tabs to the bottom, but they no longer show the tab text title, only the icon and a blank space. Firefox 65 and Windows 10

所有回覆 (4)

more options
more options

Forgive me, but I accidentily posted this in that list too. But that is not my problem. My tabs are on the bottom, just blank

more options

I did not realise that you had started a separate thread for this issue.

Please see my response in the other thread.

The behaviour appears depending upon the custom userChrome.css that you copied. The cause is the setting of the background colour for the box in which the tabs sit being the same as the foreground colour of the inactive tab text.

You can override the text colour of the inactive tabs by adding "color: grey !important;" (or whatever colour you prefer) to the #TabsToolbar section of your custom userChrome.css:

#TabsToolbar {

height: var(--tab-min-height) !important;
margin-bottom: 1px !important;
box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important;
background-color: var(--toolbar-bgcolor) !important;
color: grey !important; }

This should work for you; it is the version of userChrome.css that you have.

You can also use this code for that section:

#TabsToolbar {

position: absolute !important; bottom: 0 !important; width: 100vw !important;

}

You may end up with a background colour in the tabs box that you do not like, with the second snippet. However, on machines that have the entire userChrome.css from which that snippet originates, everything follows my preferred system preferences, nicely.

If those code changes do not work for you, I suggest that you try different userChrome.css files (there are at least three linked from the linked thread) until you find one that you like.

Good luck!

more options