Quote:
Originally Posted by Lynne
But your template doesn't actually look like that unless you left "your URL" and "link to your image file" in there (which you should not have). So, exactly what does your template look like?
|
Here is the template code:
Code:
<link rel="stylesheet" href="clientscript/nivo-slider.css" type="text/css" media="screen" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script src="clientscript/jquery.nivo.slider.pack.js" type="text/javascript"></script>
<div id="slider">
<a href="http://www.repairmanjack.com"><img src="http://www.repairmanjack.com/forum/animate_logo/rj_logo00.png" /></a>
<a href="http://www.repairmanjack.com"><img src="http://www.repairmanjack.com/forum/animate_logo/rj_logo01.png" /></a>
<a href="http://www.repairmanjack.com"><img src="http://www.repairmanjack.com/forum/animate_logo/rj_logo02.png" /></a>
<a href="http://www.repairmanjack.com"><img src="http://www.repairmanjack.com/forum/animate_logo/rj_logo00.png" /></a>
<a href="http://www.repairmanjack.com"><img src="http://www.repairmanjack.com/forum/animate_logo/rj_logo03.png" /></a>
<a href="http://www.repairmanjack.com"><img src="http://www.repairmanjack.com/forum/animate_logo/rj_logo04.png" /></a>
<a href="http://www.repairmanjack.com"><img src="http://www.repairmanjack.com/forum/animate_logo/rj_logo00.png" /></a>
<a href="http://www.repairmanjack.com"><img src="http://www.repairmanjack.com/forum/animate_logo/rj_logo05.png" /></a>
<a href="http://www.repairmanjack.com"><img src="http://www.repairmanjack.com/forum/animate_logo/rj_logo.png" /></a>
</div>
<vb:literal>
<script type="text/javascript">
$(window).load(function() {
var total = $('#slider img').length;
var rand = Math.floor(Math.random()*total);
$('#slider').nivoSlider({
effect:'random',
slices:15,
animSpeed:500,
pauseTime:7000,
startSlide:rand,
directionNav:false,
directionNavHide:true,
controlNav:false,
controlNavThumbs:false,
controlNavThumbsFromRel:false,
keyboardNav:true,
pauseOnHover:true,
manualAdvance:false,
captionOpacity:0.8,
beforeChange: function(){},
afterChange: function(){},
slideshowEnd: function(){}
});
});
</script>
</vb:literal>
I also did an experiment where the plugin called a non-existent template. Not sure if an Internal Server Error would normally cause this, but it did.