On http://www.bonemarrowpetition.org:
Labels identifying name, email, zip code, etc are not displaying on the gravityform.
I am using wp3.01, a theme from ithemes.com called "builder."
How do I get the field labels to display?
Thanks.
On http://www.bonemarrowpetition.org:
Labels identifying name, email, zip code, etc are not displaying on the gravityform.
I am using wp3.01, a theme from ithemes.com called "builder."
How do I get the field labels to display?
Thanks.
Your labels are not appearing because your theme stylesheet is setting all label elements to white. This is happening here:
http://bonemarrowpetition.org/wp-content/themes/BuilderChild-Anchor/style.css
It appears on line 944 of that stylesheet.
label {
font-weight: bold;
color: #FFFFFF;
}
The label is there, your theme styles are just setting the labels to #FFFFFF which is white so you can't see them on the white background.
Excellent That fixed it, and taught me where to look if I want to make basic css form style changes. Thanks.
How about where I can change the color of the "submit" button, which on bonemarrowpetition.org looks muddied out?
Again, you need to change or add styles to your theme stylesheet to customize the look of the form. Try adding this to your theme stylesheet:
.gform_wrapper input.button{color: #ffffff !important; background-color: #385C7D !important; padding: 5px;}