Hi Support,
I am creating a contact Form 7 that will have 2 rows of 2 columns, followed by a single row drop down selector then a text area.
I have applied the following in the contact form builder:
[textarea* your-message placeholder "How can we assist you today?*"]
[submit "Send us your message now"]
And the following in the CSS:
/* Contact 7 Forms
--------------------------------------------- */
.wpcf7 input[type=“text”], .wpcf7 textarea, .wpcf7 select, .wpcf7 input[type=“tel”], .wpcf7 input[type=“email”]
{ border:1px solid #000000 }
.wpcf7 input[type=“text”], .wpcf7 textarea, .wpcf7 select, .wpcf7 input[type=“tel”], .wpcf7 input[type=“email”]
{ border-radius: 10px 10px 10px 10px;}
.wpcf7 {
padding: 1em
}
.whole-form1 {
display: flex;
justify-content: center
}
.field-space1 {
padding-right:1%;
}
.whole-form2 {
display: flex;
justify-content: center;
}
@media only screen and (max-width: 600px) {
.whole-form1 {
flex-direction: column;
}
.whole-form2 {
flex-direction: column;
}
}
But i cant seem to get the tope 2 rows to go full width.
Any ideas on the top 2 rows with columns?