This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Search Support

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.

Learn More

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

hoe kan ik de standaard lettertypekleur veranderen die ik gebruik voor te zoeken op de firefox startpagina ?

  • 3 antwoorde
  • 1 het hierdie probleem
  • 1 view
  • Laaste antwoord deur cor-el

more options

als ik bij firefox startpagina iets ingeef voor te zoeken is de letterype altijd zwart ? kan ik dit veranderen zodat ik de achtergrondkleur van firefox zwart kan maken maar zelf toch nog kan zien wat ik intyp voor te zoeken.

als ik bij firefox startpagina iets ingeef voor te zoeken is de letterype altijd zwart ? kan ik dit veranderen zodat ik de achtergrondkleur van firefox zwart kan maken maar zelf toch nog kan zien wat ik intyp voor te zoeken.

Gekose oplossing

Do you only want to change that color on the about:home page?

Add code to the userContent.css file.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.

You can use this button to go to the Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder

@-moz-document url(about:home){
#searchText {
 color: #eee !important;
 background-color: #000 !important;
}
}
Lees dié antwoord in konteks 👍 0

All Replies (3)

more options

Gekose oplossing

Do you only want to change that color on the about:home page?

Add code to the userContent.css file.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.

You can use this button to go to the Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder

@-moz-document url(about:home){
#searchText {
 color: #eee !important;
 background-color: #000 !important;
}
}
more options

ja , ik wil alleen de kleur van de lettertype veranderen op internet , de achtergrond en de rest heb ik al gevonden , dank u

more options

Were you already able to create the userContent.css file with this code and does it work for you?

This code only work for the about:home page and not for other internet pages.