How do I change the color of the Placeholder text in the Precise Forms feature?
Use the code below to change the text color of the Placeholder text in the Precise Forms feature:
1) Log into your App Manager and select your app.
2) Click Colors from the left-hand-side of the screen (or the middle of the screen).
3) Scroll down to the Advanced SCSS box. If there is already code in the advanced SCSS box, do not remove it. Start a new line “after” the last character in the box, then paste the above code.
/*** BEGIN: PRECISE FORMS - CHANGE PLACEHOLDER TEXT COLOR ***/
.precise-item *::placeholder {
color: #bababa;
}
.precise-item *::-webkit-input-placeholder {
color: #bababa;
}
/*** END: PRECISE FORMS - CHANGE PLACEHOLDER TEXT COLOR ***/
4)Click Save.
Note:Replace the hex color on both lines (“bababa”) to the color that you would like to use.