
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?
被選擇的解決方法
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)
選擇的解決方法
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 auserChrome.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!