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 gf_left_half and gf_right_half doesnt work with Vigilance

  1. Hello I am using Vigilance and Gravity Forms http://duo-mirabelle.de/termine/karten-kaufen/.
    The gf_left_half and gf_right_half class (http://www.gravityhelp.com/documentation/page/CSS_Ready_Classes)
    does not work with Vigilance.

    Any idea what I need to fix?
    Thank you.
    immi.

    The response I got from thethemefoundry.com is I should contact you guys...

    http://thethemefoundry.com/forums/topic/gravity-forms-gf_left_half-and-gf_right_half-doesnt-work-with-vigilance

    Posted 12 years ago on Wednesday June 15, 2011 | Permalink
  2. The classes appear to be working properly, notice the "telefon" field is floated to the right as it should be when the "gf_right_half" class is applied.

    screenshot: http://grab.by/amD6

    The problem is with your THEME styles. The master.css file (line 443) adds a 17 pixel left padding to every list item (our forms are structured using an unordered list) so the field widths are thrown off and don't float properly. If you disable that rule, you'll notice that the formatting works as intended.

    screenshot: http://grab.by/amD8

    You can add this rule to the end of your theme stylesheet and it should override the padding so your columns will align properly.

    [css]
    body .entry .gform_wrapper ul li,
    body .c-body .gform_wrapper ul li {
      background-image: none;
      padding: 0
    }

    This wasn't difficult to diagnose so it sounds like the Themefoundry support team was taking the day off. I hope this helps.

    Posted 12 years ago on Wednesday June 15, 2011 | Permalink
  3. Hi Kevin, Thanks sooooo much!!!! Much appreciated.
    immi.

    Posted 12 years ago on Thursday June 16, 2011 | Permalink
  4. My pleasure Immi. Let us know if you need anything else.

    Posted 12 years ago on Thursday June 16, 2011 | Permalink