how do you change the button color , hover color, and hover opacity for a single button like the above id=”7″ and leave the rest to be based on the theme overall color scheme?
this is what i have done
#kadbtn7 {
font-size: 15px;
padding: 5px 5px;
border-radius: 4px;
width: 160px;
height: 25px;
line-height: 15px;
}
#kadbtn7:hover {
background: #ffaf78;!important;
}
the color doest change correctly in the hover, yet i see that if i do this
#kadbtn7 {
font-size: 15px;
padding: 5px 5px;
border-radius: 4px;
width: 160px;
height: 25px;
line-height: 15px;
background: #ffaf78;!important;
}
then the hover color works but only at the 70% opacity setting as per the theme settings.
so i guess i need the primary background colour setting, and how to change the opacity.
thanks