Disable the Transition Effects function in Blog

Disabling Transition Effects on Blogs - The transition effect is useful enough to be applied to blogs as a subtle effect with pauses that have been specified when the cursor is pointed to an element on the blog and most blog templates I've encountered in it have transition effects.

The usual transition effects are written like this

.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.