Quote:
Originally Posted by Elenna
Do you mean that it isn't transitioning between images at all? Or it IS pulling your images successfully, but that you only want to have it do the "Fade" effect and not any of the other ones?
If you only want the fade effect, edit your widget code like this:
Find:
Code:
<script type="text/javascript">
$(window).load(function() {
$("#slider").nivoSlider();
});
</script>
Replace with:
Code:
<script type="text/javascript">
$(window).load(function() {
$("#slider").nivoSlider({
effect: 'fade' // Specify sets like: 'fold,fade,sliceDown'
});
});
</script>
|
Not Working, :-( whit this code i see only one line. Solved now the correct code is:
HTML Code:
<script type="text/javascript">
$(window).load(function() {
$("#slider").nivoSlider({
effect: "fade"
});
});
</script>