Trying to remove a shake js animation added by default.

dwhs

New Member
We just got our new design and it has a shake text js thing on the main page I want to remove.

I can't find what calls the js, I have searched google, the css pages, and the top js code.

Any ideas?

You can see the page here: http://www.dwhs.net/index-new.html

The js shaky thing in on the three big boxes.
 

PixelPusher

Super Moderator
Staff member
The animation for the text bouncing in your banner is located in the "scripts.js" file. Delete the last function. Looks like this:

Code:
$('.banner').hover(function(){$(this).find('h3').animate({left:'30'},100,'easeInCirc').animate({left:'-50'},10,'easeInCirc').animate({left:'0'},400,'easeOutBounce');
                            $(this).find('span').animate({left:'50'},100,'easeInCirc').animate({left:'-5'},10,'easeInCirc').animate({left:'0'},400,'easeOutBounce');
                            $(this).find('strong').animate({left:'50'},100,'easeInCirc').animate({left:'-20'},10,'easeInCirc').animate({left:'0'},400,'easeOutBounce');},function(){});
 
Top