Problem solved. It’s in the header.php file.
$(window).load(function() {
$(‘.wp_bannerize’).nivoSlider({
effect: ‘slideInRight’,
slices: 1,
animSpeed: 500,
pauseTime: 3000,
startSlide: 0,
directionNav: true,
directionNavHide: false,
controlNav: false,
controlNavThumbs: false,
controlNavThumbsFromRel: false,
controlNavThumbsSearch: ‘.jpg’,
controlNavThumbsReplace: ‘_thumb.jpg’,
keyboardNav: true,
pauseOnHover: true,
manualAdvance: false,
captionOpacity: 0.8,
prevText: ‘Prev’,
nextText: ‘Next’,
beforeChange: function(){},
afterChange: function(){},
slideshowEnd: function(){},
lastSlide: function(){},
afterLoad: function(){}
});
});
the “pauseTime” line is what I was looking for.