I am using a wordpress plugin which applies some CSS formatting to all input tags. I’d like my submit button to not have these and to use the default css settings (applied by browser) instead.
How can I
- Apply the CSS to all input tags other than submit button (input type=”submit”)
OR - Remove all custom CSS from submit button?
Thanks.
In CSS3 you can target all elements but
xwith:See here.
I’m not sure it’s possible with CSS2 (without using javascript, as Jeff points out in the comments).