I received a question via private message about slider timings. Since that might interest other site owners aswell.
How do I slow down the image timings, at the moment its a bit fast?
Answer:
That is a setting for the nivo slider:
http://nivo.dev7studios.com/#usage
There you can see what you can change. I'll give an example for the timings.
Search:
Code:
<script type="text/javascript">
$(window).load(function() {
$("#slider").nivoSlider();
});
</script>
Replace with:
Code:
<script type="text/javascript">
$(window).load(function() {
$("#slider").nivoSlider({
pauseTime: 6000
});
});
</script>
This changes the pause Time between slides from 3 seconds to 6 seconds.
@croft
please go through the faq and post the debug you get (last question) if the other questions do not help.
It does look like a combination of a jquery (either to many jquery files or old jquery version or no jquery at all) issue and some problems with saving the resized image to file. Debug will help with the last one. If you can't find the jquery problem a link to the site where the slider is implemented would help.
Cheers