Please include a link to your Contact Form 7 form so we can examine your form in detail.
Here is where it is located…. http://192.185.21.123/~highland/
Here is the code:
<h3><font color=#00FF00>REQUEST A QUOTE:</h3></font color>
<font color #ff3300>
<p></p>
<p> [text* name placeholder “Your Name (Required)”] </p>
<p></p>
<p></p>
<p> [email* your-email placeholder “Email Address (Required)”] </p>
<p></p>
<p>[tel* phone /34 placeholder “Your Phone Number”]
<p></p>
<p> [text* area 28 placeholder “Length x Width (Sq. Ft.) Required”] </p>
<p></p>
<p>[text* location 28 placeholder “City/Additional Info (Required).”] </p>
<p></p>
</font color>
<font color = #fffffff>
<p>[submit “Send”]</p>
</font color>
Thanks so much for helping me with this. It has been driving me over the edge.
This is most likely due to CSS styling applied to standard HTML form elements within your current WordPress theme.
I can’t see the cause of your problem using both Firebug & Chrome Dev Tools (which is very unusual for me) but I see that you are using Bootstrap which is known to make styling of forms sometimes difficult.
Nevertheless you should be able to fix your problem with something like:
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"] {
width: 150px;
}
Add via Child Theme or custom CSS plugin.
See Styling Contact Form for a general explanation of styling CF7 forms using CSS.
There is a link at the bottom of the page to a comprehensive and detailed article on Styling Contact Form 7 Forms. The article shows people, with suitable HTML & CSS skills, how to change the appearance of their Contact Form 7 Forms to meet their particular requirements.