Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

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.