Tagged: contact form 7
Hi.
I installed Contact Form 7 but it looks different. I would like it to look like the contact form shortcode in your theme. Is it possible?
Hi Semel!
It looks exactly the same. You just need to enclose the text on a label tag. Edit the Contact 7’s example form and replace it with:
<p><label>Your Name (required)</label><br />
[text* your-name] </p>
<p><label>Your Email (required)</label><br />
[email* your-email] </p>
<p><label>Subject</label><br />
[text your-subject] </p>
<p><label>Your Message</label><br />
[textarea your-message] </p>
<p><label>[submit "Send"]</label></p>
Cheers!
Ismael
Hey!
Please remove the line break tag.
<p><label>Your Name (required)</label>
[text* your-name] </p>
<p><label>Your Email (required)</label>
[email* your-email] </p>
<p><label>Subject</label>
[text your-subject] </p>
<p><label>Your Message</label>
[textarea your-message] </p>
<p><label>[submit "Send"]</label></p>
Regards,
Ismael
Hi again.
I tried doing it but it’s still no difference. I want the textareas to be the same size on WIP as on Kontakt.
Hey!
Add this code to the Quick CSS:
.wpcf7{
width: 73.5%;
}
.wpcf7 input[type='text'], .wpcf7 textarea, .wpcf7 input[type='email'] {
width: 100% !important;
}
Cheers!
Josue