Submit button at bottom of form is hard to read. It picks up the colors of my theme. Is there away to over ride that and customize that button. I did not include URL to site because it is not public yet.
Submit button at bottom of form is hard to read. It picks up the colors of my theme. Is there away to over ride that and customize that button. I did not include URL to site because it is not public yet.
Yes, you can use CSS to target and style any form element. You would add custom CSS to your themes stylesheet to target and style whatever you want.
Here are some examples:
http://www.gravityhelp.com/documentation/css-targeting-samples/
Thanks for links
From the link I get
body .gform_wrapper .gform_footer input[type=image] {border:1px solid red}
But question is how do I change it? What I have is a blue button . Problem is text in button is so dark can't really tell it says submit. The button is also very small. Is there a way to change that using code above or is there another way to do it?
Any suggestions would be helpful
The CSS you referenced is only if you are using an image submit button, which it doesn't sound like you are if your theme is setting the colors. So you wouldn't use that.
If you want to change the background color and foreground color you need to add the appropriate CSS. For example:
body .gform_wrapper .gform_footer input[type=submit] {color: #FFFFFF, background-color: #000000;}
That would set the foreground color to white and the background color to black for the button. BUT the way CSS inheritance works depending on how your CSS is setup and the order in which your CSS is executed, if your colors are still getting overwritten then you can use the !important declaration to force it. For example:
body .gform_wrapper .gform_footer input[type=submit] {color: #FFFFFF!important, background-color: #000000!important;}
It's all standard CSS. You just have to target the correct HTML element and use CSS to apply the styles you want.