SOLVED

form 2.0 submit button hover color change

Go to solution
Anonymous
Not applicable

form 2.0 submit button hover color change

I know the 2.0 editor has options for changing standard button color, but the hover is still within the marketo js code that is automatically pulled in. I tried adding the color changing css to our landing page template but that is not working, and I'm no javascript expert. Has anyone found a way to use the HTML element to change the submit button hover colors?


Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

Re: form 2.0 submit button hover color change

Solved:

add this to your template css 

  a.button a:hover{
    background-color: #F78E1E !important;;
    background-image: linear-gradient(to bottom, #BF6421 0%, #EF8425 50%, #F78E1E 50%, #F78E1E 100%)!important;;
}


changing to a solid color if you'd like

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Re: form 2.0 submit button hover color change

Solved:

add this to your template css 

  a.button a:hover{
    background-color: #F78E1E !important;;
    background-image: linear-gradient(to bottom, #BF6421 0%, #EF8425 50%, #F78E1E 50%, #F78E1E 100%)!important;;
}


changing to a solid color if you'd like