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.

Any 'normal' way to edit fields?

  1. Fiduzi
    Member

    Dear Gravity Forms,

    Is there a visual way to edit my forms? *instead of browsing through 2500 lines of CSS? ;)

    I just want to style it a bit.. give it some color, some extra white space and done.
    Some fields (like address/postal code) are having breaks before them.. no idea how to solve it. And the extended name field gives a small preview when i click on it.. how to disable/edit this? *tried my inspector, But no effect.

    Please take a look at it: http://hypotheeksteun.nl/aanvraag/

    Thank you so much for your time and effort!

    Love,

    Daan Brusse

    Posted 11 years ago on Wednesday May 2, 2012 | Permalink
  2. Hey Daan, to give the fields some breathing room just update this block you placed in your theme's stylesheet with this:

    [css]
    body .gform_wrapper form .gform_body ul, body .gform_wrapper form .gform_body ul li {
    list-style: none !important;
    list-style: none !important;
    background: none !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 0 10px 0 !important;
    border: none !important;
    }

    All I did was put a 10px bottom margin.

    There is something that is injecting paragraph tags - most likely coming from your theme or a plugin JS file. Beacuse you are using some kind of minify thing, it's lumping all the JS from everything into one file - so you'll want to test for theme/plugin conflicts to try to pinpoint where it's coming from:

    http://www.gravityhelp.com/documentation/page/Testing_for_a_Theme/Plugin_Conflict

    In terms of color - what exactly are you trying to achieve there?

    Posted 11 years ago on Wednesday May 2, 2012 | Permalink
  3. Fiduzi
    Member

    Dear Rob,

    Thanks! The margin is perfect, thank you! :)
    About the paragraphs, i couldn't figure it out (whenever it was the theme or a plugin) so instead of a pre made address box i made a few text lines. Want to give them the gf_half/left/right column style, but for some reason my theme (or whatever it is) overrides those columns.. no idea how.

    Any place you can send me to ? :)

    Thnx!

    Posted 11 years ago on Wednesday May 2, 2012 | Permalink
  4. Hey Daan, if you look at the documentation:
    http://www.gravityhelp.com/documentation/page/CSS_Ready_Classes

    Notice that those ready classes only work with the "top label" placement.

    Posted 11 years ago on Wednesday May 2, 2012 | Permalink