SOLVED

Re: Change button hover color - Forms 2.0

Go to solution
Delinda_Tinkey1
Level 5

Re: Change button hover color - Forms 2.0

Putting this CSS in the form 2.0 editor worked for me:

<style type="text/css">

a.button a:hover{
     background: #f47920 !important;
}

button:hover {
    background:#f47920 !important;
}

</style>
Tom_Kerlin2
Level 8

Re: Change button hover color - Forms 2.0

Hi Delinda,

I'm trying to change the color of my form button so that color changes when my cursor hovers over it, and I tried using this code but no luck - Does this code still work for you?

Let me know,

Tom

Tom Kerlin
Delinda_Tinkey1
Level 5

Re: Change button hover color - Forms 2.0

We don't use it anymore, but doing a quick test it did not work for me anymore either. I see no difference in the color when I hover. If I recall it used to default to black or something unpleasant, so no hover color is at least better!

Anonymous
Not applicable

Re: Change button hover color - Forms 2.0

This one worked for me:

/* BUTTON HOVER */

.mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover {

  background:#c35e63 !important;

}

Hiram_Cruz
Level 2

Re: Change button hover color - Forms 2.0

It works !  Thanks Delinda 😉 
Anonymous
Not applicable

Re: Change button hover color - Forms 2.0

Delinda - Thanks for this!!!!
Anonymous
Not applicable

Re: Change button hover color - Forms 2.0

Worked!