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.

labels only partially showing

  1. jmacmullen
    Member

    what do I need to do to fix the labels for first and last name?
    http://trueffort.com/contactlocations/

    Posted 12 years ago on Tuesday January 3, 2012 | Permalink
  2. You have two styles in your theme's stylesheet:

    [css]
    .gform_wrapper .ginput_complex LABEL, .gform_wrapper .gfield_time_hour LABEL, .gform_wrapper .gfield_time_minute LABEL, .gform_wrapper .gfield_date_month LABEL, .gform_wrapper .gfield_date_day LABEL, .gform_wrapper .gfield_date_year LABEL, .gform_wrapper .instruction {
        display: block;
        font-size: 11px;
        letter-spacing: 0.5pt;
        margin: -2px 0 -278px;
    }
    .gform_wrapper .ginput_complex label {
        display: block;
        font-size: 11px;
        letter-spacing: 0.5pt;
        margin: -2px 0 -278px;
    }

    The margin is what's causing your cutoff. Do you know what purpose this serves? Is there somewhere else in the site you need this odd margin declaration? If so, you can make it form ID specific, if not you can just get rid of it.

    Posted 12 years ago on Tuesday January 3, 2012 | Permalink

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