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.

Gravity Forms have Disappeared from the Page

  1. damiendasher
    Member

    Hello,

    I posted this before but realized it would be better to start this as a new topic so that you can deal with my specific problem.

    I recently updated Gravity Forms on a client's website. Once I made the update, I noticed that the Gravity Form that I had embedded on the contact page completely disappeared, except for the description and the submit button, there is nothing there.(no fields).

    I have:
    Checked for theme conflicts by activating twenty-ten and it still does not show up.
    Deactivated every plugin and it still does not show up.
    Created a new page and embedded the form, still no luck.

    I have gravity forms on all mine and my client's websites and I am very hesitant to upgrade.
    Can you help? to see the problem, please visit: http://culending.org/contact/

    Thank you for your help.

    Posted 12 years ago on Thursday August 2, 2012 | Permalink
  2. The culprit here is on line 2422 of your theme's (or child theme's) style.css:

    [css]
    #content .post ul, #content .page ul {
        display: none;
        list-style-type: square;
        margin: 0;
        padding: 0 0 15px;
    }

    That display: none; is hiding all your unordered lists, and the form is created of list elements in an unordered list. Therefore, the form fields are being hidden. If you remove that line, the form fields will show up fine. I'm not sure what issue that was there to correct, but it has the side effect of hiding your form fields.

    Posted 12 years ago on Thursday August 2, 2012 | Permalink
  3. damiendasher
    Member

    Thank you Chris,

    That solved it. I can't remember for the life of me why that code is in there, but thank you for your help.

    Posted 12 years ago on Thursday August 2, 2012 | Permalink
  4. You're welcome.

    Posted 12 years ago on Saturday August 4, 2012 | Permalink

This topic has been resolved and has been closed to new replies.