• Resolved paulinelephew

    (@paulinelephew)


    Me again!

    The search button (Rechercher in French) is causing me trouble.
    I want to change its color to grey and light grey on hover but my custom CSS doesn’t seem to work.

    Here is the site URL: http://www.noaroconsulting.com

    and here is my CSS:

    input[type=”submit”], button{
    background:none repeat scroll 0 0 #b2b2b2 !important;
    z-index:999;
    }

    input[type=”submit”]:hover, button:hover{
    background-color: #e8e9e9 !important;
    transition: background-color 125ms linear 0s;
    z-index:999;
    }

    Thanks in advance for the help!

    Pauline

Viewing 1 replies (of 1 total)
  • Thread Starter paulinelephew

    (@paulinelephew)

    Found it!

    input, button{
    background:none repeat scroll 0 0 #e8e9e9 !important;
    z-index:999;
    color:#1d1d1d;
    }

    input:hover, button:hover{
    background-color: #b2b2b2 !important;
    transition: background-color 125ms linear 0s;
    z-index:999;
    color:#ffffff;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Color of search button’ is closed to new replies.