Can’t hide field behind ‘Submit’ button

Just installed Formidable Pro. All is well, except a field appears (same color as the rest of the ‘form styling’ fields) behind the ‘Submit’ button. Can’t seem to get rid of it no matter what colors I change. Can’t make it black or the rest of the fields disappear, too. Help?

Thanks.


Attachment:
fromidable

This looks like your theme also has some styling for submit buttons. Can you provide a link to our form and I'll take a look to see what needs to change.

Sure Steve. Here you go...

 

http://robinsonaeronautics.com/?page_id=32

Thanks for the link. There are a couple locations that are causing problems here...
First, in your theme.css file, lines 785-802. The truncated CSS looks like this:

.button, input[type="submit"], .submit, #submit {
	...
}
.button:hover, input[type="submit"]:hover, .submit:hover, .submit:hover{
	...
}
.button:active, input[type="submit"]:active, .submit:active, #submit:active {
	...
}

You need to remove all the red text from those lines in your file.

The second set of problematic CSS is found in your wp_core.css file on lines 50-65.

.button, input[type="submit"], .submit, #searchform input#searchsubmit {
	...
}
.button:hover, input[type="submit"]:hover, .submit:hover {
	...
}
.button:active, input[type="submit"]:active, .submit:active {
...
}

That is the CSS that is affecting the submit button. There is other CSS in those files that is affecting other elements in your forms as well.

OK.

REALLY appreciate you looking into it. Wouldn't be the 1st time the theme has been the issue... ;)

Topic closed.