Hi,
I have a feature slider used on my blog (http://sarahpotempa.com) and I would like to slow down the speed. Here is the beginning of the code in feature.php
<?php
global $options;
foreach ($options as $value) {
if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); }
}
?>
<script type="text/javascript">
$(function() {
$("#navi ul").tabs("#panes > div", {
effect: 'fade',
fadeOutSpeed: 500,
rotate: true
}).slideshow({
autoplay: true,
interval: 2500
});
});
</script>
Is it the interval? I just want to check before messing it up!
Thanks!