Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

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

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?
Angefügte Screenshots

Ausgewählte Lösung

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.

Diese Antwort im Kontext lesen 👍 1

Alle Antworten (2)

more options

Ausgewählte Lösung

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!