I found a workaround with CSS! For anyone trying to do the same thing, this worked for me.
I added this under the settings and custom CSS section:
li:hover {
-webkit-transition: none !important;
-moz-transition: none !important;
-o-transition: none !important;
transition: none !important;
-webkit-animation: none !important;
}
h2 {
-webkit-transition: none !important;
-moz-transition: none !important;
-o-transition: none !important;
transition: none !important;
-webkit-animation: none !important;
}
h3 {
-webkit-transition: none !important;
-moz-transition: none !important;
-o-transition: none !important;
transition: none !important;
-webkit-animation: none !important;
}
Might be a little overkill, but it got the job done. Feel free to experiment for whatever your own needs are.