How to move up input area?

  • optizign13
    Asked on April 4, 2014 at 6:54 PM

    Hello. Can you help me style my form? I am trying to move my comment box so it is align to the top of input box on the left (Name). The most I can move it is margin-top: -50px. After that, it does nothing or moves it down. Also, I am trying to edit my Submit button as well (make smaller). Please advise. Thanks!

  • Elton Support Team Lead
    Replied on April 4, 2014 at 8:02 PM

    Hi,

    First, remove the existing CSS codes for the textarea alignment you've injected to your form.

    Next, inject this CSS codes to your form.

    #id_6 {
    margin-top: -88px;
    margin-left: 270px;
    }
    .form-submit-button {
    margin: 0;
    height: 21px;
    font-size: 12px;
    padding: 0 5px;
    margin-right: 5px;
    }

    Result:

    How to move up input area? Image 1 Screenshot 20

    Hope this helps!