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?
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?
Can you post a link to your form? I'd be glad to help you out with that.
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.
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.