Has WordPress got a form dedicated to FormEngine?
No and commercial products aren’t supported here.
But this really doesn’t have anything to do with the plugin. It’s basic CSS – a browser tool like Firebug will show you that the CSS in question is here:
.form-actions {
background-color: #F5F5F5;
border-top: 1px solid #E5E5E5;
margin-bottom: 20px;
margin-top: 20px;
padding: 19px 20px 20px;
}
That CSS is from your theme – so try adding the code above to custom CSS and changing the background color and the border-top.
I tried that rule before I asked for help using a parent and child command.
Thanks for the quick response
So are you saying it didn’t work? What did you add and where?
I add it to the Custom CSS FormEngine itself and then I tried adding it to the custom CSS in Virtue Theme
I don’t see it anywhere. Try adding this to custom CSS:
.form-actions {
background-color: none;
border-top: 0;
}
Ok I played around and changed the .form-actions to #formengine, using the first set of rules that you sent this what happened
http://bigsplash.aussiedigitalgraphics.com/school-group-booking-enquiry-form/
So are you happy with that?
I thought you wanted to get rid of the white space around the submit button.
I would like just to get rid of the white background around the button.I did try #formengine {
background-color: none;
border-top: 0;
}
But that didn’t work
Why have you not tried what I posted:
.form-actions {
background-color: none;
border-top: 0;
}
I did and nothing happened
then I tried
#formengine {
background-color: none;
border-top: 0;
}
and that didn’t work either
Actually, this IS working now:
.form-actions {
background-color: none;
border-top: 0;
}
Though I made a mistake on that background color – it can’t be none – it has to be the color you want. So change that to a hex code or a color – then you’ll see it’s working.
Then you need to change the form CSS back to whatever it was.
It’s not changing the background around the Submit button. I left the css code there for you to look at
You didn’t change it to a color as I posted above – try this:
.form-actions {
background-color: red;
border-top: 0;
}
ok we are getting somewhere π