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

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!

All Replies (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.