搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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;
}