@fuzzymanning the reason it looks like you can't enter anything in the name and email fields is because the font is set to white, if you place the following CSS in your theme's style.css file or wherever you place custom CSS it will change the font to back and increase the font size from 11px to 15px
.gform_wrapper input[type=text], .gform_wrapper input[type=email] {
font-size: 15px;
color: black;
}
If you also want to increase the font size for the actual field labels then you can also add this
.gform_wrapper .top_label .gfield_label {
font-size: 15px;
}
Did you copy and paste gf_left_half and gf_right_half into the CSS Class Name, if so there is the occasional problem that when you save the form pasted classes will be lost, its difficult to say why it does it for sure because it doesn't affect everyone. All I can suggest is try right clicking and choosing the paste as plain text option or typing the class names in.
Regards,
Richard
Posted 11 years ago on Saturday May 11, 2013 |
Permalink