Ty Givens
Ty Givens

Reputation: 111

(Chrome) Li hover not working

I have a page that I made here: http://foxrothschild.com/startuptoolkit/index.html

The nav on the left hand side has an a:hover effect for the background color:

.ca-menu li:hover{
background: rgba(153, 191, 204, 0.4) !important;
}

Don't know why, but in chrome it's not firing. Works in all other broswers (Firefox, IE, Safari).

Any ideas?

Upvotes: 1

Views: 336

Answers (1)

Rubén Guerrero
Rubén Guerrero

Reputation: 292

It works, but you have set: "transition: all 30000ms linear;", i think that are many miliseconds haha :)

You can set 300ms in all of transitions:

-webkit-transition: all 300ms linear;
-moz-transition: all 300ms linear;
-o-transition: all 300ms linear;
transition: all 300ms linear;
-ms-transition: all ms linear;

Hope that helps! :)

Upvotes: 2

Related Questions