I would like all forms on one site useing the time field to be without HH MM.
I cannot find anything in the documentation about this ?
I would like all forms on one site useing the time field to be without HH MM.
I cannot find anything in the documentation about this ?
You would have to add some css to hide those labels, this should work
.gform_wrapper .gfield_time_hour label, .gform_wrapper .gfield_time_minute label {display: none;}
Looks like you are almost there in the declaration on line 1909 of style.css, you just need to add an !important.
[css]
.gform_wrapper .gfield_time_hour label, .gform_wrapper .gfield_time_minute label {
display: none !important;
}
perfect, thanks
No problem, glad to help!