In order to make use of contact forms, make sure you’ve installed and activated Contact Form 7 plugin.
To create the contact form layout similar to the demo site paste the following code to the Form field, located in Contact → Contact Forms:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<div class="row vertical-gap"> <div class="col-md-6"> [text* name class:form-control placeholder "Your Name"] </div> <div class="col-md-6"> [email* email class:form-control placeholder "Your Email"] </div> </div> <div class="nk-gap-1"></div> <div>[text* title class:form-control placeholder "Your Title"]</div> <div class="nk-gap-1"></div> <div>[textarea* message x8 class:form-control placeholder "Your Comment"]</div> <div class="nk-gap-1"></div> <button class="nk-btn">Send Message</button> |