Changing Contact Form Submit Button
-
Can someone please check my code? I am trying to change the color of my submit button and also add a border around the email field to match the other fields. I’m not having luck!
Here’s the page: https://theclbgroup.com/contact/
And here’s my code:
form.wpcf7-form input.wpcf7-form-control.wpcf7-submit {
background-color: #d59541;
color: #fff;
border: none;
padding: 12px 24px;
font-size: 16px;
border-radius: 4px;
cursor: pointer;
}form.wpcf7-form input[type=”text”],
form.wpcf7-form input[type=”email”],
form.wpcf7-form textarea {
border: 1px solid #ccc;
padding: 10px;
border-radius: 4px;
width: 100%;
box-sizing: border-box;
}The page I need help with: [log in to see the link]
The topic ‘Changing Contact Form Submit Button’ is closed to new replies.