搜尋 Mozilla 技術支援網站

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

Learn More

how do i increase the size of icons in the toolbars

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

more options

how do i increase the size of the icons in the tool bars

how do i increase the size of the icons in the tool bars

所有回覆 (1)

more options

Add code to userChrome.css below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.

You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#nav-bar toolbarbutton > .toolbarbutton-icon,
#personal-bookmarks .bookmark-item > .toolbarbutton-icon {
 height: 32px !important;
 width: 32px !important;
}