I\'m trying to make a div\'s background color change on mouse over.
the div {background:white;} the div a:hover{background:grey
Just make the property !important in your css file so that background color doesnot change on mouse over.This worked for me.
!important
Example:
.fbColor { background-color: #3b5998 !important; color: white; }