Hi,
you have to edit the file custom.js in the folder js.
You have to delete the file 31 with the next code:
text_rotate();
And then delete all the code for the rotation animation. The code is the next:
/* ==============================================
/* MESSAGE ROTATION IN THE HOMEPAGE
=============================================== */
var intervalTime = 2000; //transition time
var messageArray = $(".messages").children();
var messageMax = messageArray.length - 1;
messageArray.each( function( index ) { $(this).fadeOut(); } );
$(messageArray[0]).fadeIn();
function text_rotate(){
setTimeout ( function() {
messageRotate(1);
}, intervalTime);
}
function messageRotate( index ) {
var prev = ( (index == 0) ? (messageMax) : (index - 1) );
var next = ( (index == messageMax) ? 0 : (index + 1 ) );
setTimeout ( function () {
$(messageArray[prev]).fadeOut();
setTimeout ( function () {
$(messageArray[index]).fadeIn();
setTimeout ( function () {
messageRotate(next);
},intervalTime );
},(intervalTime/2) );
},intervalTime );
}
Regards