Hello,
I have a button using the basic css, however I’d like to give it a hover effect but anytime I do it is not working. The css I used for the hover is identical to the other buttons so I figured it would work.
.btndonate2, #nf-field-4{
display: inline-block;
border-radius: 5px;
background: #ef3e42;
}
.btndonate2 a {
color: #ffffff !important;
border-radius: 5px;
}
.btndonate2 a:hover {
background: #8C1C1D;
border-radius: 5px;
}
It seems to completely ignore the a portions of the button and I cannot figure out why.