Can't Align Short Answer Fields like Address Field

  • euney.kim
    Asked on May 12, 2017 at 6:54 PM

    Cant Align Short Answer Fields like Address Field Image 1 Screenshot 20

     

    How do I align the short answer boxes just like the address boxes?

     

    I had to switch because the users want the notification email to have just the street address in the subject line, but the option to add this in the notifier sees the entire address section as 1 item.

  • Kevin Support Team Lead
    Replied on May 12, 2017 at 11:33 PM

    It is possible to display short answer fields like the address field, but it would be a bit tricky since it would require to inject CSS code to your form and you should also control how fields are displayed in mobile devices. 

    However, it's still possible to get only the information submitted in one sub-field in the address field. To capture the info you only need to add the field's name followed by the sub-fields name, here is the list of sub-fields the address has: 

    {address:addr_line1}

    {address:addr_line2}

    {address:city}

    {address:state}

    {address:postal}

    {address:country}

    "{address:addr_line1}" will get the street address value, this can be used wherever you want.

    The only thing that may change is the "address" name, but you can find it by following this guide: How-to-find-field-IDs-and-names

    Hope this helps. 

  • euney.kim
    Replied on May 14, 2017 at 5:22 PM

    Thank you so much! That works so much better with "{address:addr_line1}"