Hi there--
These forms used to work fine. But after the recent WP updates, some field boxes aren't showing any more. Here's a link to the page: http://realworldsupplychain.com/contact/
Would appreciate your help. Thanks in advance.
Hi there--
These forms used to work fine. But after the recent WP updates, some field boxes aren't showing any more. Here's a link to the page: http://realworldsupplychain.com/contact/
Would appreciate your help. Thanks in advance.
This style declaration in your theme's stylesheet is the cause (no border and no background):
[css]
.custom div.format_text form input {
width: auto;
background: none;
border: none;
}
Try dropping this into your theme's stylesheet (and you can set the hex colors to whatever you'd like):
[css]
.gform_wrapper input[type="text"], .gform_wrapper input[type="url"], .gform_wrapper input[type="email"], .gform_wrapper input[type="tel"], .gform_wrapper input[type="number"], .gform_wrapper input[type="password"] {
background: #EEE !important;
border: 1px solid #CCC !important;
}Thanks Rob. That worked great on the borders.
Any chance, you can help me further with the "submit" button. The only thing that shows right now is the word without the button itself.
Here's the link again: http://realworldsupplychain.com/contact/
Thanks in advance! Much appreciated.
Sure thing, try this snippet out in your theme's stylesheet, which targets the submit button:
[css]
.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type="submit"] {
background: #EEE;
border: 1px solid #CCC;
cursor: pointer;
}Perfect! That worked great.
Thanks Rob!
Awesome, glad to help out!