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.