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

Go to a Website no longer disappears when cursor in blank field

  • 3 replies
  • 21 have this problem
  • 2 views
  • Paskiausią atsakymą parašė cor-el

more options

Normal windows standards dictate that an empty field show blank when a cursor is put in it. However, starting with FF15, the Go to a Website verbiage does not disappear. Is there a config to make this go away? Confusing, because your never sure quickly if the cursor went into the field.

Normal windows standards dictate that an empty field show blank when a cursor is put in it. However, starting with FF15, the Go to a Website verbiage does not disappear. Is there a config to make this go away? Confusing, because your never sure quickly if the cursor went into the field.

All Replies (3)

more options

Firefox 15+ will still display the grayed placeholder text if you click an input field.

The placeholder will only disappear after you have typed at least one character.

  • [/questions/935617] Installed Firefox 15 Cursor will go only to beginning of text boxes
more options

"The placeholder will only disappear after you have typed at least one character." What?! Are you kidding me?!! This is not acceptable!

I restored my computer just to go back to Firefox 14.0.1, and then I shut off updates. And it's going to stay like that permanently until this is solved.

Modified by UFQuack

more options

You can see in the above posted thread link that you can revert that change easily with some code in the userChrome.css file.

Add code to the userChrome.css file below the default @namespace line.

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

You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.


*:-moz-placeholder:focus { color: transparent !important; }
*[autofocus]:-moz-placeholder:focus { color: graytext !important; }