.transitions {
transition: all 0.5s ease-in-out;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
}
But what if you want to disable the function without having to bother deleting all the transitional CSS code inside the template?
So here I will give tips on how to solve it by entering a little code in the template, here's how to apply
First open your blog> Template> Edit HTML> Please copy and apply the code below before ]]></b:skin>or</style>
.fullload * {-webkit-transition:none!important;-o-transition:none!important;
-moz-transition:none!important;-ms-transition:none!important;}
Then change the code below
<body>
Being like this
<body class="fullload">
Finally, save the template.
Good luck.