Hey all,
I'm trying to eliminate the shake animation that happens when you mouse over the link in the header. I'm using a child theme based on Decode, and have located the CSS in the parent theme that causes this animation.
I considered removing the CSS from the parent, but an update will undo that, plus i've generally been made to understand you should never change the parent.
So I tried over-riding by Inspecting the link in question and using one of the classes to try and over-ride in the child CSS:
.current-page-item a:hover{
animation: none !important;
-webkit-animation: none !important;
-moz-transition: none !important;
-webkit-transition: none !important;
-o-transition: color 0 ease-in !important;
transition: none !important;
}
This also didn't work. Any suggestions?
- Rick