SOLVED

Forms 2.0 Button Color

Go to solution
Karen_Black
Level 5

Forms 2.0 Button Color

Has anyone had the issue when you change a button to a custom color, that the "rollover"color is the default color?  It would be nice if it would be the same custom color.
Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Alok_Ramsisaria
Level 10

Re: Forms 2.0 Button Color

Hi Karen,

Please refer this thread for the issue. Hope this helps!


View solution in original post

6 REPLIES 6
Alok_Ramsisaria
Level 10

Re: Forms 2.0 Button Color

Hi Karen,

Please refer this thread for the issue. Hope this helps!


Karen_Black
Level 5

Re: Forms 2.0 Button Color

Thanks Alok for your help!  Wish they would fix this though....
Delinda_Tinkey1
Level 5

Re: Forms 2.0 Button Color

Where are you editing the CSS to get this to work? I tried this on the form CSS and it is not working:

<style type="text/css">

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

</style>

Anonymous
Not applicable

Re: Forms 2.0 Button Color

Hi Delinda,
yesterday I read a comment in a discussion that there is also an inline style which overwrites the css definition:
https://community.marketo.com/MarketoDiscussionDetail?id=90650000000PmCBAA0

Best regards

Steffen
 

Delinda_Tinkey1
Level 5

Re: Forms 2.0 Button Color

Thanks. Also, I just tried and this CSS worked for me:

<style type="text/css">

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

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

</style>
Anonymous
Not applicable

Re: Forms 2.0 Button Color

Thanks Delinda this helped solve my problem as well. (ps hope all is well in your camp! long time no see)