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.

ابحث في الدعم

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 change the text size in the address bar and bookmards file?

  • 2 (ردّان اثنان)
  • 1 has this problem
  • 1 view
  • آخر ردّ كتبه cor-el

more options

I wold like to increase the text size on my address bar and bookmarks file.

I wold like to increase the text size on my address bar and bookmarks file.

All Replies (2)

more options

hi rsimm1109, the following addon might help you: https://addons.mozilla.org/firefox/addon/theme-font-size-changer/

more options

Can you attach a screenshot?

  • Use a compressed image type like PNG or JPG to save the screenshot
  • Make sure that you do not exceed the maximum size of 1 MB

What do you mean with the bookmarks file?

Is that in the Library or on the Bookmarks Toolbar?

If you only want to change the font in those specific places then you can possibly use code in userChrome.css or Stylish to accomplish this.

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


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

#urlbar .textbox-input-box,
#search-container .textbox-input-box,
findbar .textbox-input-box {
 font-size: 12pt !important;
 font-family: monospace;
}

#personal-bookmarks .toolbarbutton-text { font-size: 12pt !important; }

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

Modified by cor-el