On December 10, 2013 at 6:44 am
You will have to remove these lines from asteria.js file:
//Block Animation
if (jQuery(window).width() > 480) {
jQuery('.midrow_block').hover(function(){
jQuery(this).stop().animate({ "color":sechovertext, "backgroundColor":sechover, "paddingTop":"0px" }, 200);
jQuery(this).find('.icon_wrap i').animate({ "color":sechovertext }, 200);
jQuery(this).find('.midrow_block:hover .block_img').animate({ "borderColor":sechovertext }, 200);
}, function(){
jQuery(this).stop().animate({ "color":primarytext, "backgroundColor":"transparent", "paddingTop":"2%" }, 200);
jQuery(this).find('.icon_wrap i').animate({ "color":"rgba(0, 0, 0, 0.15)" }, 200);
jQuery(this).find('.midrow_block:hover .block_img').animate({ "borderColor":"rgba(0, 0, 0, 0.15)" }, 200);
});
}