Hello There,
Thanks for writing in! In addition to your code, you would need to have a row container first before adding the column divs. This is to avoid any future issue it might create. You can make use of this code instead:
<div class="x-container"><div class="x-column x-sm x-1-2">[text* your-name placeholder "Name"][text* your-phone placeholder "Phone"]</div><div class="x-column x-sm x-1-2" style="margin-right: 0">[email* your-email placeholder "Email"][text website placeholder "Website"]</div></div><div class="x-container"><div class="x-column x-sm x-1-1">[text* your-subject placeholder "Subject"][textarea* your-message placeholder "Message"][submit "Send Mail"]</div></div>
Here is the indented version to have a clear idea of how it should be laid out:
<div class="x-container">
<div class="x-column x-sm x-1-2">
[text* your-name placeholder "Name"][text* your-phone placeholder "Phone"]
</div>
<div class="x-column x-sm x-1-2" style="margin-right: 0">
[email* your-email placeholder "Email"][text website placeholder "Website"]
</div>
</div>
<div class="x-container">
<div class="x-column x-sm x-1-1">
[text* your-subject placeholder "Subject"][textarea* your-message placeholder "Message"][submit "Send Mail"]
</div>
</div>
Hope this make sense.