How do I move a textbox input up?

  • andybose
    Asked on July 5, 2014 at 7:55 PM

    I want the wind mph input box (around halfway down the form)  to be slightly higher so it lines up with the wind direction input box to the left of it. Also would like to move the mph input box left a bit.  I have added the following code in the preferences for the form but it does not change the placement of the mph input box.

    label[for="input_13"]

    { width: 0px !important;}

  • Elton Support Team Lead
    Replied on July 5, 2014 at 10:28 PM

    Hi,

    Inject the following CSS codes to your form.

    #id_13 {

    margin: -18px 0 0 18px;

    padding: 0;

    }

    #id_14 {

    padding-right: 0;

    }

    Result:

    How do I move a textbox input up? Image 1 Screenshot 20

    If you need anything else, let us know here. Regards!