Quote:
Originally Posted by dormopoco
TNX for support
I tried and tried but I can not only set the fade effect.
|
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>
The available "options" for the red text are:
sliceDo
- wn
- sliceDownLeft
- sliceUp
- sliceUpLeft
- sliceUpDown
- sliceUpDownLeft
- fold
- fade
- random
- slideInRight
- slideInLeft
- boxRandom
- boxRain
- boxRainReverse
- boxRainGrow
- boxRainGrowReverse
You can choose more than one by putting a comma between them (like effect: 'fade, sliceUp, boxRain').
Another quick tip, if you want to have it re-get your article images, you can either FTP into that images folder and delete any of the article___ ones, OR edit the widget and change the cache time to a low number (like 1 minute). Don't forget to change it back.