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.

Labels (name, wmail, zip code, etc) are not displaying

  1. Darrylmit
    Member

    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.

    Posted 13 years ago on Wednesday August 18, 2010 | Permalink
  2. 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.

    Posted 13 years ago on Wednesday August 18, 2010 | Permalink
  3. Darrylmit
    Member

    Excellent That fixed it, and taught me where to look if I want to make basic css form style changes. Thanks.

    Posted 13 years ago on Wednesday August 18, 2010 | Permalink
  4. Darrylmit
    Member

    How about where I can change the color of the "submit" button, which on bonemarrowpetition.org looks muddied out?

    Posted 13 years ago on Wednesday August 18, 2010 | Permalink
  5. 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;}

    Posted 13 years ago on Wednesday August 18, 2010 | Permalink