Remove placeholder text when the field is clicked for PARAGRAPH TEXT field [RESOLVED]

Works brilliantly for a Single line text field - How do I get this to work for a PARAGRAPH TEXT field???
It doesn’t seem to have any effect on my form in the paragraph text field.

I think a bit of CSS targeting knowledge will do wonders for you.
The ticket you’re referring to is targeting the input element, example:

input:focus::-webkit-input-placeholder {
	color : transparent;
}

Now you’re trying to target a ‘textarea’, not an ‘input’ so you’ll want to change where it says ‘input’ to ‘textarea’. Etc for other elements.

1 Like