Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

how do i increase the size of icons in the toolbars

  • 1 phendula
  • 2 inale ngxaki
  • 7 views
  • Impendulo yokugqibela ngu 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

All Replies (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;
}