Change text box font colour

Change text box font color in a CF form.

Overview

The default text color is dark grey, which is not visible against a black background.
Add a custom CSS rule in a Load CSS action to set the input text color to white.

Answered
Gr GreyHead 11 Apr, 2015
Answer
Hi lkhwee,

Please try this in a Load CSS action in the On Load event.
.gbs3 input {
  color: white !important;
}

Bob
lk lkhwee 11 Apr, 2015
Brilliant. Thks for your help!
This topic is locked and no more replies can be posted.