Last active
August 15, 2017 09:10
-
-
Save coinso/f19252cef1008bb696adc353d15db358 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row inner-form-wrap"> | |
<div class="form-group"> | |
<label for="fullname">Full Name</label> | |
[text* fullname id:fullname class:form-control placeholder "Full Name"] | |
</div> | |
<div class="form-group"> | |
<label for="phone">Phone</label> | |
[text* phone id:phone class:form-control placeholder "Phone"] | |
</div> | |
<div class="form-group"> | |
<label for="email">Email address</label> | |
[email email id:email class:form-control placeholder "Email Address"] | |
</div> | |
<div class="form-group"> | |
<label for="subject">Subject</label> | |
[text* subject id:subject class:form-control placeholder "Subject"] | |
</div> | |
<div class="form-group"> | |
<label for="message">Your Message</label> | |
[textarea message id:message class:form-control placeholder "Your Message"] | |
</div> | |
<div class="form-group"> | |
<div class="col-sm-offset-2 col-sm-10 text-right"> | |
[submit id:submit class:btn class:btn-default "Send"] | |
</div> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#submit{ | |
width: 50%; | |
padding: 15px; | |
margin-right: 0; | |
font-size: 18px; | |
background: #841316; | |
color: #fff; | |
box-shadow: none; | |
border-radius: 0; | |
} | |
div.wpcf7 .ajax-loader{ | |
display: block; | |
} | |
#wpcf7-f1657-p7-o1 > form > div.row.inner-form-wrap > div:nth-child(6), | |
#wpcf7-f1657-p7-o1 > form > div.row.inner-form-wrap > div:nth-child(6) > div{ | |
margin-right: 0; | |
padding-right: 0; | |
} | |
div.wpcf7-validation-errors{ | |
border: 2px solid #841316; | |
color: #841316; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment