Last active
May 11, 2018 11:03
-
-
Save danishiqbal4/2ffd136f01df5e970cb6b67b81ec8c93 to your computer and use it in GitHub Desktop.
Contact Form 7 HTML code to look like the default Jupiter contact form - Outline Style - Dark
This file contains hidden or 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
<!-- HTML --> | |
<div class="mk-contact-form-wrapper s_contact outline-style s_outline contact-dark dark "> | |
<div class="mk-form-row"> | |
<div class="mk-form-full s_form-all">[text* your-name class:text-input class:s_txt-input placeholder "Your Name"]</div> | |
</div> | |
<div class="mk-form-row"> | |
<div class="mk-form-full s_form-all">[email* your-email class:text-input class:s_txt-input placeholder "Your Email"]</div> | |
</div> | |
<div class="mk-form-row"> | |
<div class="mk-form-full s_form-all">[text your-subject class:text-input class:s_txt-input placeholder "Your Subject"]</div> | |
</div> | |
<div class="mk-form-row"> | |
<div class="mk-form-full s_form-all">[textarea your-message class:mk-textarea class:s_txt-input placeholder "Your Message"]</div> | |
</div> | |
<div class="mk-form-row"> | |
[submit class:mk-progress-button class:contact-outline-submit class:outline-btn-dark "SEND"] | |
</div> | |
</div> | |
<!-- CSS --> | |
.mk-contact-form-wrapper.s_contact.outline-style span.wpcf7-form-control-wrap{ | |
display: block; | |
} | |
.mk-contact-form-wrapper.s_contact.outline-style span.wpcf7-form-control-wrap span.wpcf7-not-valid-tip{ | |
position: absolute; | |
right: 5px; | |
top: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment