Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Претражи подршку

Избегните преваре подршке. Никада од вас нећемо тражити да зовете или шаљете поруке на број или да делите личне податке. Пријавите сумњиве радње преко „Пријавите злоупотребу” опције.

Learn More

url bar font size

  • 1 одговор
  • 1 има овај проблем
  • 1 преглед
  • Последњи одговор послао Wesley Branton

more options

Is there a way to adjust the url bar's font size? I have found ways to adjust the font on just about everything in Firefox, except for the url bar. I'm using Firefox v68. Thanks for any help!

Is there a way to adjust the url bar's font size? I have found ways to adjust the font on just about everything in Firefox, except for the url bar. I'm using Firefox v68. Thanks for any help!

Сви одговори (1)

more options

If you are using a userChrome.css file, the font size can be adjusted with the following CSS code:

#urlbar {
    font-size: 20pt !important;
}

This will also adjust the font size for the items in the drop-down menu that appears under the URL bar. If you don't want those font sizes to be adjusted and only want to change the font size for the actual URL input box, you can use this CSS code:

#urlbar-input-container {
    font-size: 20pt !important;
}

If you are not already using a userChrome.css file, you can review How to Create a userChrome.css File from userchrome.org for more information.

Hope this helps.