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.

CSS and User Registration

  1. How can I fix the height of the form on this page: http://kidoinfo.com/stageresources/register/?
    Also, how does the user become a registered member?
    Thank you.

    Posted 11 years ago on Friday December 28, 2012 | Permalink
  2. Try dropping this into your theme's stylesheet:

    [css]
    body .gform_wrapper ul li.gfield {
    clear: none;
    }

    Have you setup a User Registration feed tied to this form yet?
    http://www.gravityhelp.com/documentation/page/User_Registration_Add-On

    Posted 11 years ago on Friday December 28, 2012 | Permalink
  3. That worked. Thank you.
    Yes, I set up a User Registration feed.

    Posted 11 years ago on Friday December 28, 2012 | Permalink
  4. Then that's how they get registered. When they fill out the form, the feed kicks in and creates the user upon submission.

    Posted 11 years ago on Friday December 28, 2012 | Permalink
  5. OK. I see, it didn't register at first.
    I just realized the submit button is still at the bottom of the page.

    Posted 11 years ago on Friday December 28, 2012 | Permalink
  6. This is honestly due to how your theme is set up (the columns and the floats). Try dropping this in:

    [css]
    body .gform_footer.top_label {
    clear: none;
    }
    Posted 11 years ago on Friday December 28, 2012 | Permalink