Form position Question text vs empty empty Question text

  • nocsverige
    Asked on January 9, 2018 at 3:27 PM

    Hi,

    Why does not forms without label get in line with forms on the same row with label?

    Look at this example. Fields aligned:
    1515529343all label Screenshot 10

    But if Question text "Ålder" and "Relation" are removed - not aligned.
    1515529482only left label Screenshot 21

    I can do some CSS magic and make "Ålder" and "Relation" white.
    But it´s not optimal.
    1515529592css magic Screenshot 32


    1515529614css magic problem Screenshot 43

    Please advice.

    Br

    Perra

  • jonathan
    Replied on January 9, 2018 at 4:52 PM

    I see the issue you were referring to.


    1515534481zzz 2018 01 10 05 Screenshot 10


    To fix:

    1. Do not leave the field label/names empty or blank. Always assign Question Text to fields.

    1515534535zzz 2018 01 10 05 Screenshot 21


    2. To hide the field label/names, use injected custom CSS codes instead. Example in your form you can use this CSS.

    #label_18,#label_117{

    visibility : hidden;

    }

    1515534724zzz 2018 01 10 05 Screenshot 32

    Result (fixed):

    1515534754zzz 2018 01 10 05 Screenshot 43


    Let us know if this did not work

  • nocsverige
    Replied on January 10, 2018 at 9:02 AM

    Works great! Thanks!