Sub Label Empty Space

  • dmb77g
    Asked on September 26, 2014 at 3:13 PM

    I removed the sub-label text from some fields (Name & Phone specifically) but still have "empty" space where the text previously appeared.  How can I remove this space?  Thank you!

    Jotform Thread 435038 Screenshot
  • Kiran Support Team Lead
    Replied on September 26, 2014 at 5:05 PM

    Please inject the following code to Custom CSS to hide the sub labels of First Name, Last Name, Area and Phone number.

    #sublabel_first, #sublabel_last,

    #sublabel_area, #sublabel_phone {

    display: none;

    }

    Please get back to us if you need further assistance. Thank you.

  • dmb77g
    Replied on September 30, 2014 at 4:01 PM

    Thanks for your reply Kiran but unfortunately that didn't work...  The label classes appear to be "form-sub-label" for both the name and phone fields.  The direct "for" references are as follows:

    First & Last Name Sub Labels
    for="first_22"
    for="last_22" 

    Area Code & Phone Number Sub Labels
    for="input_21_area"
    for="input_21_phone" 

    Would the code I inject into the CSS need to be modified to reflect the names or what am I doing wrong?  Thanks!

  • dmb77g
    Replied on September 30, 2014 at 4:51 PM

    Solved, Thanks!