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!

Sykje yn Support

Mij stipescams. Wy sille jo nea freegje in telefoannûmer te beljen, der in sms nei ta te stjoeren of persoanlike gegevens te dielen. Meld fertochte aktiviteit mei de opsje ‘Misbrûk melde’.

Learn More

Dizze konversaasje is argivearre. Stel in nije fraach as jo help nedich hawwe.

url bar font size

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!

Alle antwurden (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.