CSS Submit button
-
Hi there,
I wanted my submit button to have another color than blue, so I did some research on CSS and how to use it for CF7.
So, I added a CSS class in the form:
<p class=”contactFormSendButton”>[submit “Send”]</p>And on the page where the form is placed, I added the following CSS:
.contactFormSendButton input{
width: 150px;
height: 50px;
background-color: #cc652a;
font-size: 15px;
color: #fff;
}.contactFormSendButton input:hover[type=”submit”] {
background:#4f2a0f;
cursor:pointer;
color:#fff;
}But still I’m still seeing a blue color, and I have no clue where it’s coming from or how to get rid of it… Please see here: http://www.easysoftwaredeployment.nl/trynow/
If you could give me some advise on how to get rid of the blue, I’d be very happy! 🙂
Thanks in advance!
The topic ‘CSS Submit button’ is closed to new replies.