Link to home
Start Free TrialLog in
Avatar of rolandmy
rolandmyFlag for Malaysia

asked on

cursor not showing with css

The cursor, the default one with the hand when you mouseover a link or a submit button. Without the css below, the submit button does display the hand cursor but when I include the css below, the hand cursor disappeared leaving only an arrow cursor.

#send {
      background: #3f5a81;
      width: 100%;
      border: 5px solid #0F1620;
      font: bold 30px Verdana, sans-serif;
      color: #fafafa;
      text-shadow: 1px 1px 1px #0F1620;
      border-radius: 7px;
}

#send:hover {
      background: #4d76b1;
      border: 5px solid #253750;
      color: #fff;
}

#send:active {
      text-indent: -10px;
}
ASKER CERTIFIED SOLUTION
Avatar of Member_2_4913559
Member_2_4913559
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rolandmy

ASKER

Thanks.