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.

Validating (error) fields not correctly lined up

  1. ckworld
    Member

    On my form there a fields you have to fill in, before going to the next one. The Validating (error) messages (pink) are not correctly lined up, they just do nor reach all text and button on the left of the page
    They cut of the text.

    Take alook at :
    http://www.ckwebdesign.eu/dltc/?page_id=552
    Click on Volgende (Next) and see what happens.

    Any solution??
    Cees Kloosterman
    The Netherlands

    Posted 11 years ago on Sunday August 19, 2012 | Permalink
  2. You have some blanket styles being applied by your theme's stylesheet to all li elements. Try adding this to you theme's stylesheet to override those:

    [css]
    .gform_wrapper li.gfield.gfield_error {
    	padding-left: 0px;
    	margin-left: 0px;
    }

    If that does not work, depending on where you add them, you may need to add the important rule:

    [css]
    .gform_wrapper li.gfield.gfield_error {
    	padding-left: 0px!important;
    	margin-left: 0px!important;
    }
    Posted 11 years ago on Sunday August 19, 2012 | Permalink