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.

password fields layout top and bottom

  1. URL: beyondvitae.com
    wordpress version 3.5.1
    gravity forms Version 1.7.2
    Gravity Forms User Registration Add-On version 1.4

    I would like to change the password field layout above and below, rather than left and right. What do I need to change to do this. When using firebug, if I change
    <span id="input_1_7_1_container" class="ginput_left">
    <span id="input_1_7_2_container" class="ginput_right">
    *to*
    <span id="input_1_7_1_container" class="ginput_TOP">
    <span id="input_1_7_2_container" class="ginput_BOTTOM">

    This fixes the layout of how I want it to look. How do I make these changes?

    Posted 11 years ago on Wednesday May 8, 2013 | Permalink
  2. Can you post a link to your form for us?

    Posted 11 years ago on Wednesday May 8, 2013 | Permalink
  3. the form is actually on the homepage of http://beyondvitae.com, below the slider

    Posted 11 years ago on Wednesday May 8, 2013 | Permalink
  4. Ha, sorry about that - completely missed that URL call out in your post. Place this CSS snippet in your theme's stylesheet (or wherever you are instructed to place custom CSS at the theme level).

    [css]
    #input_1_7_2_container {
    float: none;
    clear: both;
    }
    Posted 11 years ago on Wednesday May 8, 2013 | Permalink
  5. Thank you SO much! It worked. Now, if you want I can make a new thread, but can we go further and make the two password fields extend to be even with the other fields above it with a border-radius of 7px? I can't seem to manipulate it correctly.

    Posted 11 years ago on Wednesday May 8, 2013 | Permalink
  6. No problem, try this out:

    [css]
    #input_1_7_1_container, #input_1_7_2_container {
    overflow: visible;
    }
    Posted 11 years ago on Wednesday May 8, 2013 | Permalink
  7. Yea, that looks great. I really appreciate the help with the css. Although my questions were strictly with design and layout, and not directly with the function of the plugin, you helped me anyway. Thanks a lot.

    Posted 11 years ago on Wednesday May 8, 2013 | Permalink
  8. No problem, glad to help out!

    Posted 11 years ago on Wednesday May 8, 2013 | Permalink

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