Okay
  Public Ticket #878700
design error in contact form
Closed

Comments

  •  2
    Carlos Vera started the conversation

    You sent me the code to place on the contact form to make it look like to the form shown in the demo "corporate" which is as follows:

    <pre>

    <div class="row">

    <div class="col span_4"> FORM INPUT HERE </div>

    <div class="col span_4"> FORM INPUT HERE </div>

    <div class="col span_4 col_last"> FORM INPUT HERE </div>

    </div>

    </pre>


    I tried to do with this form and in the end what has worked for me is more like this:

    <pre>
    <div class="row">
    <div class="col span_4"> [text* Nombre placeholder "Nombre"] </div>
    <div class="col span_4"> [email* Mail placeholder "Mail"] </div>
    <div class="col span_4 col_last"> [text* Asunto placeholder "Asunto"] </div>
    <div class="col span_12"> [textarea* Mensaje placeholder "Mensaje"] </div>
    </div>
    </pre>
    [submit "Enviar"]


    I attached two images as they currently have and the image of your demo which is as I really would like to be displayed, thank you very much in advance...

  •  3,028
    Andrew replied

    Hi Carlos,

    Apologies for the late reply.

    About the form not looking like the one here http://themenectar.com/demo/salient-corporate/contact/, could you remove the pre tags before and after the form i.e. you should have only

    <div class="row">

    <div class="col span_4"> FORM INPUT HERE </div>

    <div class="col span_4"> FORM INPUT HERE </div>

    <div class="col span_4 col_last"> FORM INPUT HERE </div>

    </div>

    That seems to be the cause of the layout issue.
    And if this does not work give us temporary admin access so that we can take a look at the contact page code from the backend.

    Thanks.

  •  2
    Carlos Vera replied

    Ok perfect, it worked...

    Thx.