• Resolved catmaniax

    (@catmaniax)


    Hello.

    I want to change color when hovering over the icon of the submit button but haven’t figured out how.
    I managed to change the colors and font-weight with the custom css below:

    .wc_comm_submit{
    	background-color:#1899d5;
    	color:#fff;
    	font-weight:700 !important;
    }

    Can you please tell me how to change the hover color?
    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author gVectors Team

    (@gvectors-team)

    Have you tried this:

    .wc_comm_submit:hover{
    	background-color:#000000!important;
    	color:#ffffff!important;
    }
    Thread Starter catmaniax

    (@catmaniax)

    Right thanks, this worked!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change hover color of submit button’ is closed to new replies.