Pomoc přepytać

Hladajće so wobšudstwa pomocy. Njenamołwimy was ženje, telefonowe čisło zawołać, SMS pósłać abo wosobinske informacije přeradźić. Prošu zdźělće podhladnu aktiwitu z pomocu nastajenja „Znjewužiwanje zdźělić“.

Learn More

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

  • 3 wotmołwy
  • 1 ma tutón problem
  • 1 napohlad
  • Poslednja wotmołwa wot 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.

Wubrane rozrisanje

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;
}
}
Tutu wotmołwu w konteksće čitać 👍 0

Wšě wotmołwy (3)

more options

Wubrane rozrisanje

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.