Viewing 2 replies - 1 through 2 (of 2 total)
  • The class is already there, look into your HTML – im my case it’s
    “wpcf7-submit”.

    So all you need is to look that up in your css (or add it there) and
    add cursor:pointer

    See
    https://www.w3schools.com/cssref/pr_class_cursor.asp
    for details.

    Thread Starter joakim.a.olsson

    (@joakimaolsson)

    Thanks! this worked great!

    for others to know I added cursor: pointer; to the css as in below.

    input[type="submit"] {
    	border: none;
    	text-transform: uppercase;
    	background: #363636;
    	padding: 4px;
    	-moz-border-radius: 5px;
    	border-radius: 5px;
    	font-size: 0.9em;
    	font-weight: bold;
    	color: #fff !important;
    	cursor: pointer;

    And then added cursor:pointer in the contact form code where I wanted the submit button:

    <p>[submit cursor:pointer "Send"]</p>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to get hover glove cursor on submit button?’ is closed to new replies.