Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • I have the same thing happen on my end as well. I also have to refresh to get out of it. Glad it not just me! I wonder why that is?

    Thread Starter bcgsam

    (@bcgsam)

    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.

Viewing 2 replies - 1 through 2 (of 2 total)