Change placeholder text in Login Id Text Box

0
Hello guys! I have a login id text box widget and I want to change the color of the placeholder text.   How can I use css to achieve this?
asked
1 answers
0

Hi Diego,

 

You can use the following custom css

.input-field-classname {
 .form-control {
  &::placeholder {
   color: red;
  }
 }
}

 

 

answered