Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Cari Bantuan

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.

Pelajari Lebih Lanjut

How can I change 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?

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

Solusi terpilih

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.

Baca jawaban ini dalam konteks 👍 1

Semua Balasan (2)

Solusi Terpilih

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.

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!