How to change File Upload spec fields font color

Hi all,

I am trying to find the settings to change the required fields text
I can change the color on just about everything else, but not these fields
“*” indicates required fields
And when adding the file upload element :
“No files selected”
“Max. file size: 50 MB.” "

Does anyone know A) what these fields are actually called or B) how to change the font color?

I am CSS limited but understand some very very basics

Can you share a link to the page on your site where we can see the form? Thank you.

https://eventsolutions.com/home2/

Hi Amanda. Try this CSS:

body .gform_wrapper span.gform_fileupload_rules {
  color: white;
}
body .gform_wrapper div.ginput_container_fileupload input {
  color: orange;
}
body .gform_wrapper p.gform_required_legend  {
  color: yellowgreen;
}
body .gform_wrapper span.gfield_required_asterisk {
  color: red!important;
  /* I had to use important here because you already have a rule being applied */
}

Applying that to your form made those items in your form look like this:

If you have any other question, please let us know.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.