Hi I wanted to change the color of the text on my submit button in my contact form. Where in the css-controls this feature?
http://iselaespanadesignstudio.com/contact/
thanks.
Hi I wanted to change the color of the text on my submit button in my contact form. Where in the css-controls this feature?
http://iselaespanadesignstudio.com/contact/
thanks.
this, on line 1047, is being overwritten by some more specific CSS.
input[type="submit"] {
color: #333333;
}
changing it to this should help
#content input[type="submit"] {
color: #333333;
}
Of course, change the color code to whatever color you want
thanks!!
You must log in to post.