Hi!
I wanted to make the submit button hover turn into a hand rather than the pointer cursor. I have added the following to the css code:
/**** Buttons ****/
#main_body input.button_text
{
overflow:visible;
padding:0 7px;
width:auto;
background-color:#7cbf4c;
font-size:8px;
color:#FFFFFF;
border-style:solid;
border-width:thin;
border-color:#0063a2;
cursor:hand;
}
However, it's not working. I also noticed that the cursor does not change to a hand on the default form either. How can I fix this?
Thanks!
Katie