Solved
How to change the color of the button on hover? The below code is not working
.Skin #Buttons #NextButton:hover{
background-color:pink;
color-blue;
}
Best answer by Matt_Christie_Walker
Looking at the CSS for that green Minimal-Green Theme, they're using `background` and combining things there instead of `background-color`, so try changing yours to:
/* change Next button's color and font color */
.Skin #Buttons #NextButton{
background:#BAD1ED ;
color:#145B82 ;
}
That should get you going I think.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
