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.

Form titles don't show up

  1. Hello, I just created my first form and I think my theme's style sheet might be messing something up (i'm not just sure why). The form has strange arrows all over it and the field titles do not show up. Please let me know what is going on if you can!

    The form can be viewed at: http://www.cultivationministries.com/home/events/new-youth-ministers/inym-2010-registration/

    Thanks!
    George

    Posted 13 years ago on Friday May 28, 2010 | Permalink
  2. I found code in these forums to remove the bullet/arrows --- but I still don't see the 'field labels' showing up. I can't even highlight them so I don't think it's a color problem. i think they are not showing up at all. Hopefully you can send me some css code that i can put in my forms style.css sheet to fix this.

    Thanks!

    Posted 13 years ago on Friday May 28, 2010 | Permalink
  3. There is a rule in your cool_blue.css (on line 497) that sets all labels to display:none. When I disabled that, the form displayed properly.

    screenshot

    I have no idea why someone would do this, it's pretty sloppy. I would start by removing that from the stylesheet and see if it breaks anything else in the theme.

    If removing the rule breaks other things in the layout, you can always try to override the rule rather than remove it by placing this at the very end of your style.css file

    .gform_wrapper label {display:block}
    .gform_wrapper ul.gfield_radio li label, .gform_wrapper ul.gfield_checkbox li label  {display:inline}

    Good luck.

    Posted 13 years ago on Friday May 28, 2010 | Permalink