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

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

Learn More

How can I change the color of urls in the urlbar dropdown?

  • 2 απαντήσεις
  • 1 έχει αυτό το πρόβλημα
  • 234 προβολές
  • Τελευταία απάντηση από withering_nightmare

more options

Can anyone help me with the css code for changing the color of urls in the urlbar dropdown?

Can anyone help me with the css code for changing the color of urls in the urlbar dropdown?
Συνημμένα στιγμιότυπα

Επιλεγμένη λύση

That can be set by using the following CSS code in a userChrome.css file:

.urlbarView-url {
    color: red !important;
}

If you are not sure how to create or use a userChrome.css file, see the How to Create a userChrome.css File page on userChrome.org.

Hope this helps.

Ανάγνωση απάντησης σε πλαίσιο 👍 1

Όλες οι απαντήσεις (2)

more options

Επιλεγμένη λύση

That can be set by using the following CSS code in a userChrome.css file:

.urlbarView-url {
    color: red !important;
}

If you are not sure how to create or use a userChrome.css file, see the How to Create a userChrome.css File page on userChrome.org.

Hope this helps.

more options

Wesley Branton said

That can be set by using the following CSS code in a userChrome.css file:
.urlbarView-url {
    color: red !important;
}

If you are not sure how to create or use a userChrome.css file, see the How to Create a userChrome.css File page on userChrome.org.

Hope this helps.

Thank you so much been digging the whole net for this! Worked like a charm!