We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

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

搜尋 Mozilla 技術支援網站

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

了解更多

can i add text labels to my icons

  • 6 回覆
  • 1 有這個問題
  • 1 次檢視
  • 最近回覆由 cor-el

more options

can i add text labels to my icons? Also i would love my tab bar on the button like the old style Firefox i always used the Classic theme restorer but cant find it anymore. The text and labels always worked with the tab fix plus but cant find that either Thanks so much

can i add text labels to my icons? Also i would love my tab bar on the button like the old style Firefox i always used the Classic theme restorer but cant find it anymore. The text and labels always worked with the tab fix plus but cant find that either Thanks so much

所有回覆 (6)

more options

由 cor-el 於 修改

more options

I used this code on my userChrome.css .............

#TabsToolbar {
position: fixed;
bottom: -0.5em;
width: 100%;
}
#tabbrowser-tabs { width: 96%; }
#content-deck { margin-bottom: 2.5em; }

how i change it to make the tabs bigger now?

Thanks Lizza

more options

Wasn't that listed right on the code you just posted indicating the width of the tabs?

more options

What do you mean with bigger (wider or taller or both)?

The selector for an individual tab is ".tabbrowser-tab {}"

more options

i want it wider but is i change from #tabbrowser-tabs { width: 96%; } to #tabbrowser-tabs { width: 150%; } i see no difference what am i doing wrong?

more options

Firefox comes with a pref on the about:config page to set a minimum width, so maybe increase this value.

  • browser.tabs.tabMinWidth

You can open the about:config page via the location/address bar. You can accept the warning and click "I accept the risk!" to continue.


You would have to set a specific width in px units to a tab and also add the !@important flag to override existing rules.

.tabbrowser-tab { width: 150px !important; }

The #tabbrowser-tabs selector is for the entire Tab bar and 100% means the available screen width and you can't increase the width beyond 100%.