PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

List Field Label

  1. I want the field label of my list to stand out from the column labels, but I can't seem to figure out how to do it. Can this be done with a CSS Class?

    Posted 12 years ago on Saturday March 31, 2012 | Permalink
  2. Can you post a link to your form? I'd be glad to help you out with that.

    Posted 12 years ago on Saturday March 31, 2012 | Permalink
  3. http://mcclaughertyconsulting.com/medication-review/

    I would like the words "Primary Pharmacies", "Routine Prescription Medications", "Non-Prescription Medications", and "PRN (As Needed Medications)" to stand out somehow.

    Thanks for the help.

    Posted 12 years ago on Sunday April 1, 2012 | Permalink
  4. Each field list item has it's own ID, so in this instance you can place this into your theme's stylesheet:

    [css]
    #field_1_8 .gfield_label, #field_1_7 .gfield_label, #field_1_9 .gfield_label, #field_1_10 .gfield_label {
    color: red;
    }

    From here you can drop whatever properties you'd like and they will take precedence.

    Posted 12 years ago on Sunday April 1, 2012 | Permalink