Disable placeholder CSS

Viewed 37

Within the woocommerce e-commerce.

I have an address field with the phrase "street name and house number" and I want to remove it.

Follow the images.

not editable

editable

I don't understand anything about any kind of programming, I just need a ready code, I'm grateful.

I can't take it off
1 Answers

if you want to add css stylings to a placeholder you can achieve it with this

::-webkit-input-placeholder { /* Edge */
  // your styles
}

::placeholder {
  // your styles
}

or if you want to remove your placeholder, remove the 'placeholder' attribute from the input tag

Related