“denotes required field” location is hard coded.
Your theme may be causing changes to the default form styles.
What is the URL to your form?
Try adding this to “CSS style for form input fields on the contact form”
width:250px;
How to change the colors for the input titles on the contact form:
Go to the contact form settings page, click on Advanced Options, look
for the setting “CSS style for form input titles on the contact form:”.
change:
text-align:left; padding-top:5px;
to:
text-align:left; padding-top:5px; color:white;
How to change the colors for the text input fields:
Go to the contact form settings page, click on Advanced Options, look
for the setting “CSS
style for form input fields on the contact form”.
change:
text-align:left;
to:
text-align:left; color:black;
Note: you can change font color and background to any html hex color code
text-align:left; border: 1px solid #666666;
text-align:left; color:#000000; background-color:#CCCCCC;
also, these custom settings will be safe when upgrading the plugin.
How to change the font size for the input titles on the contact form:
Go to the contact form settings page, click on Advanced Options, look
for the setting “CSS style for form input titles on the contact form:”.
change:
text-align:left; padding-top:5px;
to:
text-align:left; padding-top:5px; font-size:10pt;
Here is how to increase the line spacing on the form:
Go to the contact form settings page, click on Advanced Options, look
for the setting “CSS
style for form input titles on the contact form”
change:
text-align:left;
to:
text-align:left; padding-top:15px;