Hi, how can I make my contact buttons – http://screencast.com/t/BDxeJmUhk37t – look and work the same as the buttons in the blog post element – http://screencast.com/t/jHpwBQhAwD
The contact buttons should be green color, blue on over, with round edges and same size as the blog post element read more button.
Thanks.
Hey DROR!
Add this to your custom CSS.
.wpcf7-form-control { background: green !important; border-radius: 2px !important; }
Regards,
Elliott
That made the background of all form fields become green. I only want the submit button to be green and blue on hover.
Hi!
Sorry, switch it to this.
.wpcf7-submit { background: green !important; border-radius: 2px !important; }
Regards,
Elliott
Thanks, what about making it #2846aa on hover only? How can I add that?
Hi,
Try this:
.wpcf7-submit:hover {
background: #2846aa !important;
}
Best regards,
Rikard
Thanks