On September 3, 2012 at 7:06 am
you were right. ther isn’t any. Find these lines:
<script type="text/javascript">
jQuery(window).load(function() {
jQuery('#zn_nivo').nivoSlider({pauseTime: <?php echo of_get_option('sliderspeed_text'); ?>, controlNavThumbs: true,<?php if(of_get_option('nivothumb_checkbox') == "0"){ ?> directionNav: false,<?php } ?> controlNavThumbsReplace: '-150x150.jpg'});
});
</script>
and replace them with:
<script type="text/javascript">
jQuery(window).load(function() {
jQuery('#zn_nivo').nivoSlider({pauseTime: <?php echo of_get_option('sliderspeed_text'); ?>, controlNavThumbs: true,<?php if(of_get_option('nivothumb_checkbox') == "0"){ ?> directionNav: false,<?php } ?> controlNavThumbsReplace: '-150x150.jpg', effect: fade});
});
</script>